pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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.5.12</version>
  21. <relativePath/>
  22. </parent>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <java.version>1.8</java.version>
  26. <jedis.version>2.9.0</jedis.version>
  27. <kryo.version>4.0.2</kryo.version>
  28. <mysql.version>8.0.25</mysql.version>
  29. <mybatis-plus.version>3.1.0</mybatis-plus.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-tomcat</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-jetty</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-actuator</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.zaxxer</groupId>
  56. <artifactId>HikariCP</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.baomidou</groupId>
  60. <artifactId>mybatis-plus-boot-starter</artifactId>
  61. <version>${mybatis-plus.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.baomidou</groupId>
  65. <artifactId>mybatis-plus</artifactId>
  66. <version>${mybatis-plus.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.baomidou</groupId>
  70. <artifactId>mybatis-plus-generator</artifactId>
  71. <version>3.1.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.swagger</groupId>
  75. <artifactId>swagger-annotations</artifactId>
  76. <version>1.5.21</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.swagger</groupId>
  80. <artifactId>swagger-models</artifactId>
  81. <version>1.5.21</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.pagehelper</groupId>
  85. <artifactId>pagehelper-spring-boot-starter</artifactId>
  86. <version>1.2.5</version>
  87. <exclusions>
  88. <exclusion>
  89. <groupId>org.mybatis</groupId>
  90. <artifactId>mybatis</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-context-support</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>net.sf.ehcache</groupId>
  100. <artifactId>ehcache</artifactId>
  101. <version>2.10.2</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.esotericsoftware</groupId>
  105. <artifactId>kryo</artifactId>
  106. <version>${kryo.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework</groupId>
  110. <artifactId>spring-aop</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.aspectj</groupId>
  114. <artifactId>aspectjweaver</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>mysql</groupId>
  118. <artifactId>mysql-connector-java</artifactId>
  119. <version>${mysql.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.boot</groupId>
  123. <artifactId>spring-boot-starter-data-redis</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.session</groupId>
  127. <artifactId>spring-session-data-redis</artifactId>
  128. </dependency>
  129. <!-- 微信支持 -->
  130. <dependency>
  131. <groupId>com.github.liyiorg</groupId>
  132. <artifactId>weixin-popular</artifactId>
  133. <version>2.8.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.tuckey</groupId>
  137. <artifactId>urlrewritefilter</artifactId>
  138. <version>4.0.3</version>
  139. </dependency>
  140. <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
  141. <dependency>
  142. <groupId>org.projectlombok</groupId>
  143. <artifactId>lombok</artifactId>
  144. <scope>provided</scope>
  145. </dependency>
  146. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  147. <dependency>
  148. <groupId>com.squareup.okhttp3</groupId>
  149. <artifactId>okhttp</artifactId>
  150. <version>3.8.1</version>
  151. </dependency>
  152. <!--aliyun短信API-->
  153. <dependency>
  154. <groupId>com.aliyun</groupId>
  155. <artifactId>aliyun-java-sdk-core</artifactId>
  156. <version>4.4.6</version>
  157. </dependency>
  158. </dependencies>
  159. </project>