pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>jeecg-boot-base</artifactId>
  7. <version>2.4.5</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-base-core</artifactId>
  11. <repositories>
  12. <repository>
  13. <id>aliyun</id>
  14. <name>aliyun Repository</name>
  15. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  16. <snapshots>
  17. <enabled>false</enabled>
  18. </snapshots>
  19. </repository>
  20. <repository>
  21. <id>jeecg</id>
  22. <name>jeecg Repository</name>
  23. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  24. <snapshots>
  25. <enabled>false</enabled>
  26. </snapshots>
  27. </repository>
  28. </repositories>
  29. <dependencies>
  30. <!--jeecg-tools-->
  31. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>jeecg-boot-base-tools</artifactId>
  34. </dependency>
  35. <!--集成springmvc框架并实现自动配置 -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <!-- websocket -->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-websocket</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-mail</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-aop</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-actuator</artifactId>
  56. </dependency>
  57. <!--springboot2.3+ 需引入validation对应的包-->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-validation</artifactId>
  61. </dependency>
  62. <!-- commons -->
  63. <dependency>
  64. <groupId>commons-io</groupId>
  65. <artifactId>commons-io</artifactId>
  66. <version>${commons.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-lang</groupId>
  70. <artifactId>commons-lang</artifactId>
  71. <version>${commons.version}</version>
  72. </dependency>
  73. <!-- ureport -->
  74. <dependency>
  75. <groupId>com.bstek.ureport</groupId>
  76. <artifactId>ureport2-core</artifactId>
  77. <version>2.2.9</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.bstek.ureport</groupId>
  81. <artifactId>ureport2-console</artifactId>
  82. <version>2.2.9</version>
  83. </dependency>
  84. <!-- freemarker -->
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-freemarker</artifactId>
  88. </dependency>
  89. <!-- mybatis-plus -->
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-boot-starter</artifactId>
  93. <version>${mybatis-plus.version}</version>
  94. </dependency>
  95. <!-- druid -->
  96. <dependency>
  97. <groupId>com.alibaba</groupId>
  98. <artifactId>druid-spring-boot-starter</artifactId>
  99. <version>${druid.version}</version>
  100. </dependency>
  101. <!-- 动态数据源 -->
  102. <dependency>
  103. <groupId>com.baomidou</groupId>
  104. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  105. <version>${dynamic-datasource-spring-boot-starter.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.hibernate</groupId>
  109. <artifactId>hibernate-core</artifactId>
  110. <exclusions>
  111. <exclusion>
  112. <groupId>commons-collections</groupId>
  113. <artifactId>commons-collections</artifactId>
  114. </exclusion>
  115. </exclusions>
  116. </dependency>
  117. <!--mysql-->
  118. <dependency>
  119. <groupId>mysql</groupId>
  120. <artifactId>mysql-connector-java</artifactId>
  121. <version>${mysql-connector-java.version}</version>
  122. <scope>runtime</scope>
  123. </dependency>
  124. <!--JWT-->
  125. <dependency>
  126. <groupId>com.auth0</groupId>
  127. <artifactId>java-jwt</artifactId>
  128. <version>${java-jwt.version}</version>
  129. </dependency>
  130. <!--shiro-->
  131. <dependency>
  132. <groupId>org.apache.shiro</groupId>
  133. <artifactId>shiro-spring-boot-starter</artifactId>
  134. <version>${shiro.version}</version>
  135. </dependency>
  136. <!-- shiro-redis -->
  137. <dependency>
  138. <groupId>org.crazycake</groupId>
  139. <artifactId>shiro-redis</artifactId>
  140. <version>${shiro-redis.version}</version>
  141. <exclusions>
  142. <exclusion>
  143. <groupId>org.apache.shiro</groupId>
  144. <artifactId>shiro-core</artifactId>
  145. </exclusion>
  146. </exclusions>
  147. </dependency>
  148. <!-- knife4j -->
  149. <dependency>
  150. <groupId>com.github.xiaoymin</groupId>
  151. <artifactId>knife4j-spring-boot-starter</artifactId>
  152. <version>${knife4j-spring-boot-starter.version}</version>
  153. </dependency>
  154. <!-- 代码生成器 -->
  155. <!-- 如下载失败,请参考此文档 http://doc.jeecg.com/2043876 -->
  156. <dependency>
  157. <groupId>org.jeecgframework.boot</groupId>
  158. <artifactId>codegenerate</artifactId>
  159. <version>${codegenerate.version}</version>
  160. </dependency>
  161. <!-- AutoPoi Excel工具类-->
  162. <dependency>
  163. <groupId>org.jeecgframework</groupId>
  164. <artifactId>autopoi-web</artifactId>
  165. <version>${autopoi-web.version}</version>
  166. <exclusions>
  167. <exclusion>
  168. <groupId>commons-codec</groupId>
  169. <artifactId>commons-codec</artifactId>
  170. </exclusion>
  171. </exclusions>
  172. </dependency>
  173. <!-- mini文件存储服务 -->
  174. <dependency>
  175. <groupId>io.minio</groupId>
  176. <artifactId>minio</artifactId>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.google.guava</groupId>
  180. <artifactId>guava</artifactId>
  181. <version>${guava.version}</version>
  182. </dependency>
  183. <!-- 第三方登录 -->
  184. <dependency>
  185. <groupId>com.xkcoding.justauth</groupId>
  186. <artifactId>justauth-spring-boot-starter</artifactId>
  187. </dependency>
  188. <!-- pagehelper-->
  189. <dependency>
  190. <groupId>com.github.pagehelper</groupId>
  191. <artifactId>pagehelper</artifactId>
  192. <version>5.1.10</version>
  193. <scope>compile</scope>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.google.code.gson</groupId>
  197. <artifactId>gson</artifactId>
  198. <version>2.8.6</version>
  199. </dependency>
  200. <!-- aliyun oss -->
  201. <dependency>
  202. <groupId>com.aliyun.oss</groupId>
  203. <artifactId>aliyun-sdk-oss</artifactId>
  204. <version>${aliyun.oss.version}</version>
  205. </dependency>
  206. </dependencies>
  207. </project>