工业互联网平台搭建的钢板仓库管理系统
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 12KB

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