Nessuna descrizione
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.

pom.xml 11KB

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