Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pom.xml 9.7KB

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