pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.1.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.jiayue.ipfcst.d5000</groupId>
  12. <artifactId>ipfcst-d5000-web</artifactId>
  13. <version>1.16.0</version>
  14. <name>d5000-web</name>
  15. <description>D5000全(页面,逻辑,通讯)</description>
  16. <repositories>
  17. <repository>
  18. <id>jiayue-releases</id>
  19. <name>嘉越云仓库</name>
  20. <url>http://49.4.68.219:8888/repository/jiayue-releases/</url>
  21. </repository>
  22. </repositories>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. <skipTests>true</skipTests>
  26. </properties>
  27. <profiles>
  28. <profile>
  29. <id>dev</id>
  30. <properties>
  31. <profiles.active>dev</profiles.active>
  32. </properties>
  33. <activation>
  34. <activeByDefault>true</activeByDefault>
  35. </activation>
  36. </profile>
  37. <profile>
  38. <id>pro</id>
  39. <properties>
  40. <profiles.active>pro</profiles.active>
  41. </properties>
  42. </profile>
  43. </profiles>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-actuator</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-quartz</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-aop</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. <version>5.8.16</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.ftpserver</groupId>
  68. <artifactId>ftpserver-core</artifactId>
  69. <version>1.1.1</version>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/org.jdom/jdom -->
  72. <dependency>
  73. <groupId>org.jdom</groupId>
  74. <artifactId>jdom</artifactId>
  75. <version>2.0.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-web</artifactId>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-logging</artifactId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-devtools</artifactId>
  90. <scope>runtime</scope>
  91. <optional>true</optional>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.poi</groupId>
  95. <artifactId>poi</artifactId>
  96. <version>3.16</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.poi</groupId>
  100. <artifactId>poi-ooxml</artifactId>
  101. <version>3.14</version>
  102. </dependency>
  103. <!-- 处理excel和上面功能是一样的-->
  104. <dependency>
  105. <groupId>net.sourceforge.jexcelapi</groupId>
  106. <artifactId>jxl</artifactId>
  107. <version>2.6.10</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>joda-time</groupId>
  111. <artifactId>joda-time</artifactId>
  112. <version>2.9.9</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>cn.hutool</groupId>
  116. <artifactId>hutool-http</artifactId>
  117. <version>5.3.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.projectlombok</groupId>
  121. <artifactId>lombok</artifactId>
  122. <optional>true</optional>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.h2database</groupId>
  126. <artifactId>h2</artifactId>
  127. <version>1.4.199</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.mybatis.spring.boot</groupId>
  131. <artifactId>mybatis-spring-boot-starter</artifactId>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-logging</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. <version>1.3.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>io.netty</groupId>
  142. <artifactId>netty-all</artifactId>
  143. <version>4.1.6.Final</version>
  144. </dependency>
  145. <!-- https://mvnrepository.com/artifact/org.reflections/reflections -->
  146. <dependency>
  147. <groupId>org.reflections</groupId>
  148. <artifactId>reflections</artifactId>
  149. <version>0.9.10</version>
  150. </dependency>
  151. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
  152. <dependency>
  153. <groupId>org.slf4j</groupId>
  154. <artifactId>slf4j-api</artifactId>
  155. <version>1.7.25</version>
  156. </dependency>
  157. <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
  158. <dependency>
  159. <groupId>ch.qos.logback</groupId>
  160. <artifactId>logback-classic</artifactId>
  161. <version>1.2.3</version>
  162. </dependency>
  163. <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-core -->
  164. <dependency>
  165. <groupId>ch.qos.logback</groupId>
  166. <artifactId>logback-core</artifactId>
  167. <version>1.2.3</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.alibaba</groupId>
  171. <artifactId>fastjson</artifactId>
  172. <version>1.2.47</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>wei.yigulu</groupId>
  176. <artifactId>protocol-iec104</artifactId>
  177. <version>2.4.23</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-starter-test</artifactId>
  182. <scope>test</scope>
  183. <exclusions>
  184. <exclusion>
  185. <groupId>org.junit.vintage</groupId>
  186. <artifactId>junit-vintage-engine</artifactId>
  187. </exclusion>
  188. </exclusions>
  189. </dependency>
  190. </dependencies>
  191. <build>
  192. <plugins>
  193. <plugin>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-maven-plugin</artifactId>
  196. </plugin>
  197. </plugins>
  198. <resources>
  199. <resource>
  200. <directory>src/main/resources</directory>
  201. <filtering>false</filtering>
  202. <excludes>
  203. <exclude>config/**</exclude>
  204. </excludes>
  205. </resource>
  206. <resource>
  207. <directory>src/main/resources/config/${profiles.active}</directory>
  208. </resource>
  209. </resources>
  210. </build>
  211. </project>