pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.yyjc.fbs</groupId>
  6. <artifactId>fbs-parent</artifactId>
  7. <version>1.0</version>
  8. <packaging>pom</packaging>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.5.2</version>
  13. <relativePath />
  14. </parent>
  15. <modules>
  16. <module>fbs-model</module>
  17. <module>fbs-plugin-security</module>
  18. <module>fbs-security-common</module>
  19. <module>fbs-security-service</module>
  20. <module>fbs-statistic-service</module>
  21. <module>fbs-sys-service</module>
  22. <module>fbs-upload-service</module>
  23. <module>fbs-app-service</module>
  24. <module>fbs-server-lampblack</module>
  25. <module>fbs-mobile-service</module>
  26. </modules>
  27. <!--<distributionManagement>
  28. <repository>
  29. <id>maven-releases</id>
  30. <name>Releases</name>
  31. <url>http://192.168.0.103:8081/repository/maven-releases/</url>
  32. </repository>
  33. <snapshotRepository>
  34. <id>maven-snapshots</id>
  35. <name>Snapshot</name>
  36. <url>http://192.168.0.103:8081/repository/maven-snapshots/</url>
  37. </snapshotRepository>
  38. </distributionManagement>-->
  39. <properties>
  40. <springboot.skip>false</springboot.skip>
  41. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  42. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  43. <java.version>1.8</java.version>
  44. <sharding-jdbc.version>3.0.0.M1</sharding-jdbc.version>
  45. <core.common.version>1.0</core.common.version>
  46. <druid.version>1.2.6</druid.version>
  47. <mybatis.starter.version>2.2.0</mybatis.starter.version>
  48. <fastjson.version>1.2.71</fastjson.version>
  49. <spring.boot.version>2.5.2</spring.boot.version>
  50. <commons-pool2.version>2.10.0</commons-pool2.version>
  51. <poi.version>3.16</poi.version>
  52. <feign.version>8.18.0</feign.version>
  53. <pagehelper.version>1.3.0</pagehelper.version>
  54. <ttl.version>2.10.0</ttl.version>
  55. <xxl-job.version>2.3.0</xxl-job.version>
  56. <poi-tl.version>1.4.2</poi-tl.version>
  57. <jfreechart.version>1.0.19</jfreechart.version>
  58. <commons-csv.version>1.6</commons-csv.version>
  59. <dom4j.version>2.1.1</dom4j.version>
  60. <jaxen.version>1.1.6</jaxen.version>
  61. <redis.version>2.5.2</redis.version>
  62. <guava.version>27.0.1-jre</guava.version>
  63. <bboss-elasticsearch.version>5.5.5</bboss-elasticsearch.version>
  64. <m2e.apt.activation>jdt_apt</m2e.apt.activation>
  65. <org.mapstruct.version>1.3.0.Final</org.mapstruct.version>
  66. <apollo-client.version>1.8.0</apollo-client.version>
  67. <validation.version>2.5.2</validation.version>
  68. </properties>
  69. <dependencyManagement>
  70. <dependencies>
  71. <dependency>
  72. <groupId>org.springframework.cloud</groupId>
  73. <artifactId>spring-cloud-dependencies</artifactId>
  74. <version>2020.0.3</version>
  75. <type>pom</type>
  76. <scope>import</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.common.springboot.plugins</groupId>
  80. <artifactId>common-plugins-parent</artifactId>
  81. <version>1.0-SNAPSHOT</version>
  82. <type>pom</type>
  83. <scope>import</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>${project.groupId}</groupId>
  87. <artifactId>fbs-model</artifactId>
  88. <version>${project.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>${project.groupId}</groupId>
  92. <artifactId>fbs-security-common</artifactId>
  93. <version>${project.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>${project.groupId}</groupId>
  97. <artifactId>fbs-plugin-security</artifactId>
  98. <version>${project.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.mybatis.spring.boot</groupId>
  102. <artifactId>mybatis-spring-boot-starter</artifactId>
  103. <version>${mybatis.starter.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>druid</artifactId>
  108. <version>${druid.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alibaba</groupId>
  112. <artifactId>fastjson</artifactId>
  113. <version>${fastjson.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.commons</groupId>
  117. <artifactId>commons-pool2</artifactId>
  118. <version>${commons-pool2.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>io.shardingsphere</groupId>
  122. <artifactId>sharding-jdbc</artifactId>
  123. <version>${sharding-jdbc.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>io.shardingsphere</groupId>
  127. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  128. <version>${sharding-jdbc.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>javax.core.common</groupId>
  132. <artifactId>core-common-utils</artifactId>
  133. <version>${core.common.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-dependencies</artifactId>
  138. <version>${spring.boot.version}</version>
  139. <type>pom</type>
  140. <scope>import</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>commons-lang</groupId>
  144. <artifactId>commons-lang</artifactId>
  145. <version>2.6</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.poi</groupId>
  149. <artifactId>poi</artifactId>
  150. <version>${poi.version}</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.poi</groupId>
  154. <artifactId>poi-ooxml-schemas</artifactId>
  155. <version>${poi.version}</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.poi</groupId>
  159. <artifactId>poi-ooxml</artifactId>
  160. <version>${poi.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>com.netflix.feign</groupId>
  164. <artifactId>feign-core</artifactId>
  165. <version>${feign.version}</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>javax.ws.rs</groupId>
  169. <artifactId>jsr311-api</artifactId>
  170. <version>1.1.1</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>com.netflix.feign</groupId>
  174. <artifactId>feign-jackson</artifactId>
  175. <version>${feign.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.netflix.feign</groupId>
  179. <artifactId>feign-jaxrs</artifactId>
  180. <version>${feign.version}</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>io.jsonwebtoken</groupId>
  184. <artifactId>jjwt</artifactId>
  185. <version>0.7.0</version>
  186. </dependency>
  187. <!-- 分页插件 -->
  188. <dependency>
  189. <groupId>com.github.pagehelper</groupId>
  190. <artifactId>pagehelper-spring-boot-starter</artifactId>
  191. <version>${pagehelper.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.ctrip.framework.apollo</groupId>
  195. <artifactId>apollo-client</artifactId>
  196. <version>${apollo-client.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.alibaba</groupId>
  200. <artifactId>transmittable-thread-local</artifactId>
  201. <version>${ttl.version}</version>
  202. </dependency>
  203. <!-- 拼音首字母缩写 -->
  204. <dependency>
  205. <groupId>com.belerweb</groupId>
  206. <artifactId>pinyin4j</artifactId>
  207. <version>2.5.0</version>
  208. </dependency>
  209. <!-- xxl-job-core -->
  210. <dependency>
  211. <groupId>com.xuxueli</groupId>
  212. <artifactId>xxl-job-core</artifactId>
  213. <version>${xxl-job.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>com.deepoove</groupId>
  217. <artifactId>poi-tl</artifactId>
  218. <version>${poi-tl.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.jfree</groupId>
  222. <artifactId>jfreechart</artifactId>
  223. <version>${jfreechart.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.apache.commons</groupId>
  227. <artifactId>commons-csv</artifactId>
  228. <version>${commons-csv.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.dom4j</groupId>
  232. <artifactId>dom4j</artifactId>
  233. <version>${dom4j.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>jaxen</groupId>
  237. <artifactId>jaxen</artifactId>
  238. <version>${jaxen.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.springframework.boot</groupId>
  242. <artifactId>spring-boot-starter-data-redis</artifactId>
  243. <version>${redis.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.google.guava</groupId>
  247. <artifactId>guava</artifactId>
  248. <version>${guava.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>com.bbossgroups.plugins</groupId>
  252. <artifactId>bboss-elasticsearch-spring-boot-starter</artifactId>
  253. <version>${bboss-elasticsearch.version}</version>
  254. </dependency>
  255. <!-- mapstruct -->
  256. <dependency>
  257. <groupId>org.mapstruct</groupId>
  258. <artifactId>mapstruct</artifactId>
  259. <version>${org.mapstruct.version}</version>
  260. </dependency>
  261. <!-- jxls -->
  262. <dependency>
  263. <groupId>org.jxls</groupId>
  264. <artifactId>jxls</artifactId>
  265. <version>2.4.0</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>org.jxls</groupId>
  269. <artifactId>jxls-poi</artifactId>
  270. <version>1.0.12</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>org.jxls</groupId>
  274. <artifactId>jxls-jexcel</artifactId>
  275. <version>1.0.6</version>
  276. </dependency>
  277. <!-- validation-->
  278. <dependency>
  279. <groupId>org.springframework.boot</groupId>
  280. <artifactId>spring-boot-starter-validation</artifactId>
  281. <version>${validation.version}</version>
  282. </dependency>
  283. </dependencies>
  284. </dependencyManagement>
  285. <build>
  286. <plugins>
  287. <plugin>
  288. <groupId>org.springframework.boot</groupId>
  289. <artifactId>spring-boot-maven-plugin</artifactId>
  290. <configuration>
  291. <skip>${springboot.skip}</skip>
  292. </configuration>
  293. </plugin>
  294. <plugin>
  295. <groupId>org.apache.maven.plugins</groupId>
  296. <artifactId>maven-compiler-plugin</artifactId>
  297. <configuration>
  298. <source>${java.version}</source>
  299. <target>${java.version}</target>
  300. <compilerVersion>${java.version}</compilerVersion>
  301. <encoding>UTF-8</encoding>
  302. <compilerArgument>-Xlint:unchecked</compilerArgument>
  303. <annotationProcessorPaths>
  304. <path>
  305. <groupId>org.mapstruct</groupId>
  306. <artifactId>mapstruct-processor</artifactId>
  307. <version>${org.mapstruct.version}</version>
  308. </path>
  309. </annotationProcessorPaths>
  310. </configuration>
  311. </plugin>
  312. <plugin>
  313. <groupId>org.apache.maven.plugins</groupId>
  314. <artifactId>maven-resources-plugin</artifactId>
  315. <configuration>
  316. <nonFilteredFileExtensions>
  317. <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
  318. <nonFilteredFileExtension>xls</nonFilteredFileExtension>
  319. <nonFilteredFileExtension>zip</nonFilteredFileExtension>
  320. <nonFilteredFileExtension>cer</nonFilteredFileExtension>
  321. <nonFilteredFileExtension>pfx</nonFilteredFileExtension>
  322. <nonFilteredFileExtension>py</nonFilteredFileExtension>
  323. <nonFilteredFileExtension>keystore</nonFilteredFileExtension>
  324. <nonFilteredFileExtension>doc</nonFilteredFileExtension>
  325. <nonFilteredFileExtension>docx</nonFilteredFileExtension>
  326. </nonFilteredFileExtensions>
  327. </configuration>
  328. </plugin>
  329. </plugins>
  330. </build>
  331. </project>