pom.xml 11 KB

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