pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.fuint</groupId>
  7. <artifactId>fuint</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0.0</version>
  10. <description>fuint project root</description>
  11. <modules>
  12. <module>fuint-utils</module>
  13. <module>fuint-repository</module>
  14. <module>fuint-application</module>
  15. <module>fuint-framework</module>
  16. </modules>
  17. <parent>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-dependencies</artifactId>
  20. <version>2.7.18</version>
  21. <relativePath/>
  22. </parent>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <java.version>8</java.version>
  26. <jedis.version>4.3.1</jedis.version>
  27. <kryo.version>5.4.0</kryo.version>
  28. <mysql.version>8.0.33</mysql.version>
  29. <mybatis-plus.version>3.5.3.1</mybatis-plus.version>
  30. <jsqlparser.version>4.6</jsqlparser.version>
  31. <springfox.version>3.0.0</springfox.version>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-tomcat</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-jetty</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-actuator</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.zaxxer</groupId>
  58. <artifactId>HikariCP</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>javax.xml.soap</groupId>
  62. <artifactId>javax.xml.soap-api</artifactId>
  63. <version>1.4.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.sun.xml.messaging.saaj</groupId>
  67. <artifactId>saaj-impl</artifactId>
  68. <version>1.5.1</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>mybatis-plus-boot-starter</artifactId>
  73. <version>${mybatis-plus.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.baomidou</groupId>
  77. <artifactId>mybatis-plus</artifactId>
  78. <version>${mybatis-plus.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.baomidou</groupId>
  82. <artifactId>mybatis-plus-generator</artifactId>
  83. <version>3.1.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.swagger</groupId>
  87. <artifactId>swagger-annotations</artifactId>
  88. <version>1.5.21</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>io.swagger</groupId>
  92. <artifactId>swagger-models</artifactId>
  93. <version>1.5.21</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.github.pagehelper</groupId>
  97. <artifactId>pagehelper-spring-boot-starter</artifactId>
  98. <version>1.4.7</version>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>org.mybatis</groupId>
  102. <artifactId>mybatis</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>com.github.jsqlparser</groupId>
  106. <artifactId>jsqlparser</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework</groupId>
  112. <artifactId>spring-context-support</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>net.sf.ehcache</groupId>
  116. <artifactId>ehcache</artifactId>
  117. <version>2.10.2</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.esotericsoftware</groupId>
  121. <artifactId>kryo</artifactId>
  122. <version>${kryo.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework</groupId>
  126. <artifactId>spring-aop</artifactId>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.aspectj</groupId>
  130. <artifactId>aspectjweaver</artifactId>
  131. </dependency>
  132. <dependency>
  133. <groupId>mysql</groupId>
  134. <artifactId>mysql-connector-java</artifactId>
  135. <version>${mysql.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-starter-data-redis</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework.session</groupId>
  143. <artifactId>spring-session-data-redis</artifactId>
  144. </dependency>
  145. <!-- 微信支持 -->
  146. <dependency>
  147. <groupId>com.github.liyiorg</groupId>
  148. <artifactId>weixin-popular</artifactId>
  149. <version>2.8.0</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.tuckey</groupId>
  153. <artifactId>urlrewritefilter</artifactId>
  154. <version>4.0.3</version>
  155. </dependency>
  156. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  157. <dependency>
  158. <groupId>org.projectlombok</groupId>
  159. <artifactId>lombok</artifactId>
  160. <scope>provided</scope>
  161. </dependency>
  162. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  163. <dependency>
  164. <groupId>com.squareup.okhttp3</groupId>
  165. <artifactId>okhttp</artifactId>
  166. <version>3.8.1</version>
  167. </dependency>
  168. <!--aliyun短信API-->
  169. <dependency>
  170. <groupId>com.aliyun</groupId>
  171. <artifactId>aliyun-java-sdk-core</artifactId>
  172. <version>4.4.6</version>
  173. </dependency>
  174. </dependencies>
  175. <dependencyManagement>
  176. <dependencies>
  177. <dependency>
  178. <groupId>com.github.jsqlparser</groupId>
  179. <artifactId>jsqlparser</artifactId>
  180. <version>${jsqlparser.version}</version>
  181. </dependency>
  182. <!-- 强制排除所有可能引入旧版本JSqlParser的依赖 -->
  183. <dependency>
  184. <groupId>com.baomidou</groupId>
  185. <artifactId>mybatis-plus-extension</artifactId>
  186. <version>${mybatis-plus.version}</version>
  187. <exclusions>
  188. <exclusion>
  189. <groupId>com.github.jsqlparser</groupId>
  190. <artifactId>jsqlparser</artifactId>
  191. </exclusion>
  192. </exclusions>
  193. </dependency>
  194. </dependencies>
  195. </dependencyManagement>
  196. <build>
  197. <plugins>
  198. <plugin>
  199. <groupId>org.apache.maven.plugins</groupId>
  200. <artifactId>maven-compiler-plugin</artifactId>
  201. <version>3.8.1</version>
  202. <configuration>
  203. <source>1.8</source>
  204. <target>1.8</target>
  205. <encoding>UTF-8</encoding>
  206. </configuration>
  207. </plugin>
  208. </plugins>
  209. </build>
  210. </project>