pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.sunwin</groupId>
  7. <artifactId>sunwin_metro</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.0.RELEASE</version>
  14. <relativePath/>
  15. </parent>
  16. <modules>
  17. <module>flink_metro</module>
  18. </modules>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.slf4j</groupId>
  22. <artifactId>slf4j-api</artifactId>
  23. <version>1.7.25</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>log4j</groupId>
  27. <artifactId>log4j</artifactId>
  28. <version>1.2.17</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>fastjson</artifactId>
  33. <version>1.2.73</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-lang</groupId>
  37. <artifactId>commons-lang</artifactId>
  38. <version>2.6</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>junit</groupId>
  43. <artifactId>junit</artifactId>
  44. <version>4.10</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.chinaway</groupId>
  48. <artifactId>sw-http-client</artifactId>
  49. <version>1.1-test</version>
  50. </dependency>
  51. </dependencies>
  52. <profiles>
  53. <profile>
  54. <id>local</id>
  55. <activation>
  56. <activeByDefault>true</activeByDefault>
  57. <property>
  58. <name>env</name>
  59. <value>Env</value>
  60. </property>
  61. </activation>
  62. <build>
  63. <resources>
  64. <resource>
  65. <directory>src/main/resources/local</directory>
  66. </resource>
  67. </resources>
  68. </build>
  69. </profile>
  70. <profile>
  71. <id>pro</id>
  72. <activation>
  73. <activeByDefault>false</activeByDefault>
  74. <property>
  75. <name>pro</name>
  76. <value>Pro</value>
  77. </property>
  78. </activation>
  79. <build>
  80. <resources>
  81. <resource>
  82. <directory>src/main/resources/pro</directory>
  83. </resource>
  84. </resources>
  85. </build>
  86. </profile>
  87. <profile>
  88. <id>test</id>
  89. <activation>
  90. <activeByDefault>false</activeByDefault>
  91. <property>
  92. <name>test</name>
  93. <value>Test</value>
  94. </property>
  95. </activation>
  96. <build>
  97. <resources>
  98. <resource>
  99. <directory>src/main/resources/test</directory>
  100. </resource>
  101. </resources>
  102. </build>
  103. </profile>
  104. </profiles>
  105. </project>