pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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. <packaging>pom</packaging>
  7. <groupId>cn.vbdsm</groupId>
  8. <artifactId>vbdsm-hj212</artifactId>
  9. <version>2.1.0</version>
  10. <modules>
  11. <module>vbdsm-hj212-modle</module>
  12. <module>vbdsm-hj212-datacollect</module>
  13. <module>vbdsm-hj212-rpc</module>
  14. <module>vbdsm-hj212-server</module>
  15. <module>vbdsm-hj212-plugs</module>
  16. <module>vbdsm-hj212-socket</module>
  17. <module>vbdsm-hj212-modbus</module>
  18. </modules>
  19. <parent>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-parent</artifactId>
  22. <version>2.0.5.RELEASE</version>
  23. <relativePath/>
  24. </parent>
  25. <properties>
  26. <springboot.skip>false</springboot.skip>
  27. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  28. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  29. <java.version>1.8</java.version>
  30. <sharding-jdbc.version>3.0.0.M1</sharding-jdbc.version>
  31. <core.common.version>1.0</core.common.version>
  32. <druid.version>1.1.1</druid.version>
  33. <mybatis.starter.version>1.3.2</mybatis.starter.version>
  34. <fastjson.version>1.2.47</fastjson.version>
  35. <spring.boot.version>2.0.5.RELEASE</spring.boot.version>
  36. <commons-pool2.version>2.4.2</commons-pool2.version>
  37. <poi.version>3.16</poi.version>
  38. <feign.version>8.18.0</feign.version>
  39. <swagger.version>2.7.0</swagger.version>
  40. <pagehelper.version>1.2.5</pagehelper.version>
  41. <ttl.version>2.10.0</ttl.version>
  42. <xxl-job.version>2.4.0</xxl-job.version>
  43. <poi-tl.version>1.4.2</poi-tl.version>
  44. <jfreechart.version>1.0.19</jfreechart.version>
  45. <commons-csv.version>1.6</commons-csv.version>
  46. <dom4j.version>2.1.1</dom4j.version>
  47. <jaxen.version>1.1.6</jaxen.version>
  48. <redis.version>2.0.5.RELEASE</redis.version>
  49. <guava.version>27.0.1-jre</guava.version>
  50. <bboss-elasticsearch.version>5.5.5</bboss-elasticsearch.version>
  51. <m2e.apt.activation>jdt_apt</m2e.apt.activation>
  52. <org.mapstruct.version>1.3.0.Final</org.mapstruct.version>
  53. <lombok.version>1.18.26</lombok.version>
  54. <epp.version>1.0-SNAPSHOT</epp.version>
  55. <netty.version>4.1.34.Final</netty.version>
  56. </properties>
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-dependencies</artifactId>
  62. <version>Finchley.RELEASE</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-dependencies</artifactId>
  69. <version>${spring.boot.version}</version>
  70. <type>pom</type>
  71. <scope>import</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.netty</groupId>
  75. <artifactId>netty-all</artifactId>
  76. <version>${netty.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.projectlombok</groupId>
  80. <artifactId>lombok</artifactId>
  81. <version>${lombok.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>${project.groupId}</groupId>
  85. <artifactId>vbdsm-hj212-socket</artifactId>
  86. <version>${project.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>${project.groupId}</groupId>
  90. <artifactId>vbdsm-hj212-modle</artifactId>
  91. <version>${project.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>${project.groupId}</groupId>
  95. <artifactId>vbdsm-hj212-plugs</artifactId>
  96. <version>${project.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>${project.groupId}</groupId>
  100. <artifactId>vbdsm-hj212-rpc</artifactId>
  101. <version>${project.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.alibaba</groupId>
  105. <artifactId>fastjson</artifactId>
  106. <version>${fastjson.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.mybatis.spring.boot</groupId>
  110. <artifactId>mybatis-spring-boot-starter</artifactId>
  111. <version>${mybatis.starter.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.alibaba</groupId>
  115. <artifactId>druid</artifactId>
  116. <version>${druid.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.commons</groupId>
  120. <artifactId>commons-pool2</artifactId>
  121. <version>${commons-pool2.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>io.shardingsphere</groupId>
  125. <artifactId>sharding-jdbc</artifactId>
  126. <version>${sharding-jdbc.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>io.shardingsphere</groupId>
  130. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  131. <version>${sharding-jdbc.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>javax.core.common</groupId>
  135. <artifactId>core-common-utils</artifactId>
  136. <version>${core.common.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. <version>${lombok.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>commons-lang</groupId>
  145. <artifactId>commons-lang</artifactId>
  146. <version>2.6</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.poi</groupId>
  150. <artifactId>poi</artifactId>
  151. <version>${poi.version}</version>
  152. </dependency>
  153. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
  154. <dependency>
  155. <groupId>org.apache.poi</groupId>
  156. <artifactId>poi-ooxml-schemas</artifactId>
  157. <version>${poi.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.poi</groupId>
  161. <artifactId>poi-ooxml</artifactId>
  162. <version>${poi.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>javax.ws.rs</groupId>
  166. <artifactId>jsr311-api</artifactId>
  167. <version>1.1.1</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.netflix.feign</groupId>
  171. <artifactId>feign-core</artifactId>
  172. <version>${feign.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.netflix.feign</groupId>
  176. <artifactId>feign-jackson</artifactId>
  177. <version>${feign.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.netflix.feign</groupId>
  181. <artifactId>feign-jaxrs</artifactId>
  182. <version>${feign.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>io.jsonwebtoken</groupId>
  186. <artifactId>jjwt</artifactId>
  187. <version>0.7.0</version>
  188. </dependency>
  189. <!-- 分页插件 -->
  190. <dependency>
  191. <groupId>com.github.pagehelper</groupId>
  192. <artifactId>pagehelper-spring-boot-starter</artifactId>
  193. <version>${pagehelper.version}</version>
  194. </dependency>
  195. <!-- https://mvnrepository.com/artifact/com.alibaba/transmittable-thread-local -->
  196. <dependency>
  197. <groupId>com.alibaba</groupId>
  198. <artifactId>transmittable-thread-local</artifactId>
  199. <version>${ttl.version}</version>
  200. </dependency>
  201. <!-- 拼音首字母缩写 -->
  202. <dependency>
  203. <groupId>com.belerweb</groupId>
  204. <artifactId>pinyin4j</artifactId>
  205. <version>2.5.0</version>
  206. </dependency>
  207. <!-- xxl-job-core -->
  208. <dependency>
  209. <groupId>com.xuxueli</groupId>
  210. <artifactId>xxl-job-core</artifactId>
  211. <version>${xxl-job.version}</version>
  212. </dependency>
  213. </dependencies>
  214. </dependencyManagement>
  215. <build>
  216. <plugins>
  217. <plugin>
  218. <groupId>org.springframework.boot</groupId>
  219. <artifactId>spring-boot-maven-plugin</artifactId>
  220. <configuration>
  221. <skip>${springboot.skip}</skip>
  222. </configuration>
  223. </plugin>
  224. <plugin>
  225. <groupId>org.apache.maven.plugins</groupId>
  226. <artifactId>maven-compiler-plugin</artifactId>
  227. <configuration>
  228. <source>${java.version}</source>
  229. <target>${java.version}</target>
  230. <compilerVersion>${java.version}</compilerVersion>
  231. <encoding>UTF-8</encoding>
  232. <compilerArgument>-Xlint:unchecked</compilerArgument>
  233. <annotationProcessorPaths>
  234. <path>
  235. <groupId>org.projectlombok</groupId>
  236. <artifactId>lombok</artifactId>
  237. <version>${lombok.version}</version>
  238. </path>
  239. <path>
  240. <groupId>org.mapstruct</groupId>
  241. <artifactId>mapstruct-processor</artifactId>
  242. <version>${org.mapstruct.version}</version>
  243. </path>
  244. </annotationProcessorPaths>
  245. </configuration>
  246. </plugin>
  247. <plugin>
  248. <groupId>org.apache.maven.plugins</groupId>
  249. <artifactId>maven-resources-plugin</artifactId>
  250. <configuration>
  251. <nonFilteredFileExtensions>
  252. <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
  253. <nonFilteredFileExtension>xls</nonFilteredFileExtension>
  254. <nonFilteredFileExtension>zip</nonFilteredFileExtension>
  255. <nonFilteredFileExtension>cer</nonFilteredFileExtension>
  256. <nonFilteredFileExtension>pfx</nonFilteredFileExtension>
  257. <nonFilteredFileExtension>py</nonFilteredFileExtension>
  258. <nonFilteredFileExtension>keystore</nonFilteredFileExtension>
  259. <nonFilteredFileExtension>doc</nonFilteredFileExtension>
  260. <nonFilteredFileExtension>docx</nonFilteredFileExtension>
  261. </nonFilteredFileExtensions>
  262. </configuration>
  263. </plugin>
  264. </plugins>
  265. </build>
  266. </project>