暫無描述
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

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