Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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. <groupId>com.shinsoft</groupId>
  6. <artifactId>service</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0-SNAPSHOT</version>
  9. <modules>
  10. <module>exp</module>
  11. <module>bas</module>
  12. <module>ctc</module>
  13. <module>lim</module>
  14. <module>cst</module>
  15. <module>iec</module>
  16. <module>bas-api</module>
  17. <module>cst-api</module>
  18. <module>ctc-api</module>
  19. <module>iec-api</module>
  20. <module>lim-api</module>
  21. </modules>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. <spring-boot.version>2.1.8.RELEASE</spring-boot.version>
  25. <spring-cloud.version>Greenwich.SR3</spring-cloud.version>
  26. <alibaba-cloud.version>2.1.3.RELEASE</alibaba-cloud.version>
  27. <nacos.version>1.4.0.RELEASE</nacos.version>
  28. <jackjson.version>2.11.0</jackjson.version>
  29. <poi.version>3.17</poi.version>
  30. <output.path>C:\out\store\web</output.path>
  31. <log4j.version>2.17.0</log4j.version>
  32. </properties>
  33. <dependencyManagement>
  34. <!-- spring -->
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-dependencies</artifactId>
  39. <version>${spring-boot.version}</version>
  40. <type>pom</type>
  41. <scope>import</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-dependencies</artifactId>
  46. <version>${spring-cloud.version}</version>
  47. <type>pom</type>
  48. <scope>import</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba.cloud</groupId>
  52. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  53. <version>${alibaba-cloud.version}</version>
  54. <type>pom</type>
  55. <scope>import</scope>
  56. </dependency>
  57. <!-- spring -->
  58. <!--log4j2-->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-log4j2</artifactId>
  62. <version>2.6.1</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.logging.log4j</groupId>
  66. <artifactId>log4j-api</artifactId>
  67. <version>${log4j.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.logging.log4j</groupId>
  71. <artifactId>log4j-core</artifactId>
  72. <version>${log4j.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.logging.log4j</groupId>
  76. <artifactId>log4j-jul</artifactId>
  77. <version>${log4j.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.logging.log4j</groupId>
  81. <artifactId>log4j-slf4j-impl</artifactId>
  82. <version>${log4j.version}</version>
  83. </dependency>
  84. <!--log4j2-->
  85. <!--数据库相关-->
  86. <dependency>
  87. <groupId>com.oracle.database.jdbc</groupId>
  88. <artifactId>ojdbc8</artifactId>
  89. <version>19.22.0.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.oracle.database.nls</groupId>
  93. <artifactId>orai18n</artifactId>
  94. <version>19.22.0.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>mysql</groupId>
  98. <artifactId>mysql-connector-java</artifactId>
  99. <version>8.0.24</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.dameng</groupId>
  103. <artifactId>DmJdbcDriver18</artifactId>
  104. <version>8.1.3.140</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.xerial</groupId>
  108. <artifactId>sqlite-jdbc</artifactId>
  109. <version>3.43.0.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.alibaba</groupId>
  113. <artifactId>druid</artifactId>
  114. <version>1.1.12</version>
  115. </dependency>
  116. <!--数据库相关-->
  117. <!--JSON相关-->
  118. <dependency>
  119. <groupId>com.alibaba</groupId>
  120. <artifactId>fastjson</artifactId>
  121. <version>1.2.83</version>
  122. </dependency>
  123. <!--JSON相关-->
  124. <!--common-->
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-pool2</artifactId>
  128. <version>2.4.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.commons</groupId>
  132. <artifactId>commons-lang3</artifactId>
  133. <version>3.9</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>commons-io</groupId>
  137. <artifactId>commons-io</artifactId>
  138. <version>2.16.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>commons-fileupload</groupId>
  142. <artifactId>commons-fileupload</artifactId>
  143. <version>1.3.2</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>commons-dbutils</groupId>
  147. <artifactId>commons-dbutils</artifactId>
  148. <version>1.6</version>
  149. </dependency>
  150. <!--common-->
  151. <!--加密-->
  152. <dependency>
  153. <groupId>com.auth0</groupId>
  154. <artifactId>java-jwt</artifactId>
  155. <version>3.10.3</version>
  156. </dependency>
  157. <!--加密-->
  158. <!--二维码-->
  159. <dependency>
  160. <groupId>com.google.zxing</groupId>
  161. <artifactId>core</artifactId>
  162. <version>3.3.0</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.google.zxing</groupId>
  166. <artifactId>javase</artifactId>
  167. <version>3.3.0</version>
  168. </dependency>
  169. <!--二维码-->
  170. <!--代码生成-->
  171. <dependency>
  172. <groupId>org.freemarker</groupId>
  173. <artifactId>freemarker</artifactId>
  174. <version>2.3.31</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.baomidou</groupId>
  178. <artifactId>mybatis-plus-boot-starter</artifactId>
  179. <version>3.5.7</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.baomidou</groupId>
  183. <artifactId>mybatis-plus-generator</artifactId>
  184. <version>3.5.7</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.baomidou</groupId>
  188. <artifactId>mybatis-plus-extension</artifactId>
  189. <version>3.5.7</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.projectlombok</groupId>
  193. <artifactId>lombok</artifactId>
  194. <version>1.18.12</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>io.swagger</groupId>
  198. <artifactId>swagger-annotations</artifactId>
  199. <version>1.6.2</version>
  200. </dependency>
  201. <!--代码生成-->
  202. <!--POI office文档控制jar-->
  203. <!-- <dependency>-->
  204. <!-- <groupId>org.apache.poi</groupId>-->
  205. <!-- <artifactId>poi</artifactId>-->
  206. <!-- <version>${poi.version}</version>-->
  207. <!-- </dependency>-->
  208. <!-- <dependency>-->
  209. <!-- <groupId>org.apache.poi</groupId>-->
  210. <!-- <artifactId>poi-scratchpad</artifactId>-->
  211. <!-- <version>${poi.version}</version>-->
  212. <!-- </dependency>-->
  213. <!-- <dependency>-->
  214. <!-- <groupId>org.apache.poi</groupId>-->
  215. <!-- <artifactId>poi-ooxml</artifactId>-->
  216. <!-- <version>${poi.version}</version>-->
  217. <!-- </dependency>-->
  218. <!-- <dependency>-->
  219. <!-- <groupId>fr.opensagres.xdocreport</groupId>-->
  220. <!-- <artifactId>xdocreport</artifactId>-->
  221. <!-- <version>2.0.1</version>-->
  222. <!-- </dependency>-->
  223. <!-- <dependency>-->
  224. <!-- <groupId>fr.opensagres.xdocreport</groupId>-->
  225. <!-- <artifactId>fr.opensagres.poi.xwpf.converter.core</artifactId>-->
  226. <!-- <version>2.0.1</version>-->
  227. <!-- </dependency>-->
  228. <!-- <dependency>-->
  229. <!-- <groupId>fr.opensagres.xdocreport</groupId>-->
  230. <!-- <artifactId>fr.opensagres.poi.xwpf.converter.xhtml</artifactId>-->
  231. <!-- <version>2.0.1</version>-->
  232. <!-- </dependency>-->
  233. <!-- <dependency>-->
  234. <!-- <groupId>org.apache.poi</groupId>-->
  235. <!-- <artifactId>poi-ooxml-schemas</artifactId>-->
  236. <!-- <version>${poi.version}</version>-->
  237. <!-- </dependency>-->
  238. <!-- <dependency>-->
  239. <!-- <groupId>org.apache.poi</groupId>-->
  240. <!-- <artifactId>ooxml-schemas</artifactId>-->
  241. <!-- <version>1.3</version>-->
  242. <!-- </dependency>-->
  243. <!--POI office文档控制jar-->
  244. <!--Excel导入导出-->
  245. <dependency>
  246. <groupId>com.alibaba</groupId>
  247. <artifactId>easyexcel</artifactId>
  248. <version>4.0.3</version>
  249. </dependency>
  250. <!--Excel导入导出-->
  251. <!-- itext pdf-->
  252. <dependency>
  253. <groupId>com.lowagie</groupId>
  254. <artifactId>itext</artifactId>
  255. <version>4.2.1</version>
  256. </dependency>
  257. <!--itext-->
  258. <!-- xxl-job-core -->
  259. <!-- <dependency>-->
  260. <!-- <groupId>com.xuxueli</groupId>-->
  261. <!-- <artifactId>xxl-job-core</artifactId>-->
  262. <!-- <version>2.4.0</version>-->
  263. <!-- <exclusions>-->
  264. <!-- <exclusion>-->
  265. <!-- <groupId>org.springframework.boot</groupId>-->
  266. <!-- <artifactId>spring-boot-starter-logging</artifactId>-->
  267. <!-- </exclusion>-->
  268. <!-- </exclusions>-->
  269. <!-- </dependency>-->
  270. <dependency>
  271. <groupId>cn.hutool</groupId>
  272. <artifactId>hutool-all</artifactId>
  273. <version>5.8.8</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>io.swagger</groupId>
  277. <artifactId>swagger-annotations</artifactId>
  278. <version>1.6.2</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>com.squareup.okhttp3</groupId>
  282. <artifactId>okhttp</artifactId>
  283. <version>3.14.9</version>
  284. </dependency>
  285. <!--对象存储-->
  286. <dependency>
  287. <groupId>io.minio</groupId>
  288. <artifactId>minio</artifactId>
  289. <version>8.2.2</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>com.qiniu</groupId>
  293. <artifactId>qiniu-java-sdk</artifactId>
  294. <version>7.16.0</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>software.amazon.awssdk</groupId>
  298. <artifactId>s3</artifactId>
  299. <version>2.20.126</version>
  300. </dependency>
  301. <!--对象存储-->
  302. </dependencies>
  303. </dependencyManagement>
  304. <build>
  305. <plugins>
  306. <plugin>
  307. <groupId>org.springframework.boot</groupId>
  308. <artifactId>spring-boot-maven-plugin</artifactId>
  309. <version>2.1.8.RELEASE</version>
  310. <configuration>
  311. <skip>true</skip>
  312. </configuration>
  313. <executions>
  314. <execution>
  315. <goals>
  316. <goal>repackage</goal>
  317. </goals>
  318. </execution>
  319. </executions>
  320. </plugin>
  321. <plugin>
  322. <artifactId>maven-compiler-plugin</artifactId>
  323. <version>3.6.0</version>
  324. <configuration>
  325. <source>1.8</source>
  326. <target>1.8</target>
  327. <encoding>utf8</encoding>
  328. </configuration>
  329. </plugin>
  330. </plugins>
  331. </build>
  332. </project>