pom.xml 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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.easyproject</groupId>
  7. <artifactId>easyproject</artifactId>
  8. <version>3.8.5</version>
  9. <name>easyproject</name>
  10. <description>蜀商小智管理系统</description>
  11. <properties>
  12. <easyproject.version>3.8.5</easyproject.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <java.version>1.8</java.version>
  16. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  17. <druid.version>1.2.15</druid.version>
  18. <bitwalker.version>1.21</bitwalker.version>
  19. <kaptcha.version>2.3.3</kaptcha.version>
  20. <pagehelper.boot.version>1.4.6</pagehelper.boot.version>
  21. <fastjson.version>2.0.23</fastjson.version>
  22. <oshi.version>6.4.0</oshi.version>
  23. <commons.io.version>2.11.0</commons.io.version>
  24. <commons.fileupload.version>1.4</commons.fileupload.version>
  25. <commons.collections.version>3.2.2</commons.collections.version>
  26. <poi.version>4.1.2</poi.version>
  27. <velocity.version>2.3</velocity.version>
  28. <jwt.version>0.9.1</jwt.version>
  29. <hutool.version>5.8.12</hutool.version>
  30. <tencentcloud.version>3.1.832</tencentcloud.version>
  31. <okhttp3.version>4.12.0</okhttp3.version>
  32. </properties>
  33. <!-- 依赖声明 -->
  34. <dependencyManagement>
  35. <dependencies>
  36. <!-- SpringBoot的依赖配置-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-dependencies</artifactId>
  40. <version>2.5.14</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <!-- 阿里数据库连接池 -->
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>druid-spring-boot-starter</artifactId>
  48. <version>${druid.version}</version>
  49. </dependency>
  50. <!-- 解析客户端操作系统、浏览器等 -->
  51. <dependency>
  52. <groupId>eu.bitwalker</groupId>
  53. <artifactId>UserAgentUtils</artifactId>
  54. <version>${bitwalker.version}</version>
  55. </dependency>
  56. <!-- pagehelper 分页插件 -->
  57. <dependency>
  58. <groupId>com.github.pagehelper</groupId>
  59. <artifactId>pagehelper-spring-boot-starter</artifactId>
  60. <version>${pagehelper.boot.version}</version>
  61. </dependency>
  62. <!-- 获取系统信息 -->
  63. <dependency>
  64. <groupId>com.github.oshi</groupId>
  65. <artifactId>oshi-core</artifactId>
  66. <version>${oshi.version}</version>
  67. </dependency>
  68. <!-- io常用工具类 -->
  69. <dependency>
  70. <groupId>commons-io</groupId>
  71. <artifactId>commons-io</artifactId>
  72. <version>${commons.io.version}</version>
  73. </dependency>
  74. <!-- 文件上传工具类 -->
  75. <dependency>
  76. <groupId>commons-fileupload</groupId>
  77. <artifactId>commons-fileupload</artifactId>
  78. <version>${commons.fileupload.version}</version>
  79. </dependency>
  80. <!-- excel工具 -->
  81. <dependency>
  82. <groupId>org.apache.poi</groupId>
  83. <artifactId>poi-ooxml</artifactId>
  84. <version>${poi.version}</version>
  85. </dependency>
  86. <!-- velocity代码生成使用模板 -->
  87. <dependency>
  88. <groupId>org.apache.velocity</groupId>
  89. <artifactId>velocity-engine-core</artifactId>
  90. <version>${velocity.version}</version>
  91. </dependency>
  92. <!-- collections工具类 -->
  93. <dependency>
  94. <groupId>commons-collections</groupId>
  95. <artifactId>commons-collections</artifactId>
  96. <version>${commons.collections.version}</version>
  97. </dependency>
  98. <!-- 阿里JSON解析器 -->
  99. <dependency>
  100. <groupId>com.alibaba.fastjson2</groupId>
  101. <artifactId>fastjson2</artifactId>
  102. <version>${fastjson.version}</version>
  103. </dependency>
  104. <!-- Token生成与解析-->
  105. <dependency>
  106. <groupId>io.jsonwebtoken</groupId>
  107. <artifactId>jjwt</artifactId>
  108. <version>${jwt.version}</version>
  109. </dependency>
  110. <!-- 验证码 -->
  111. <dependency>
  112. <groupId>pro.fessional</groupId>
  113. <artifactId>kaptcha</artifactId>
  114. <version>${kaptcha.version}</version>
  115. </dependency>
  116. <!--hutool 工具包-->
  117. <dependency>
  118. <groupId>cn.hutool</groupId>
  119. <artifactId>hutool-all</artifactId>
  120. <version>${hutool.version}</version>
  121. </dependency>
  122. <!--okhttp3 包-->
  123. <dependency>
  124. <groupId>com.squareup.okhttp3</groupId>
  125. <artifactId>okhttp</artifactId>
  126. <version>${okhttp3.version}</version>
  127. </dependency>
  128. <!-- 定时任务-->
  129. <!--<dependency>
  130. <groupId>com.easyproject</groupId>
  131. <artifactId>easyproject-quartz</artifactId>
  132. <version>${easyproject.version}</version>
  133. </dependency>-->
  134. <!-- 代码生成-->
  135. <dependency>
  136. <groupId>com.easyproject</groupId>
  137. <artifactId>easyproject-generator</artifactId>
  138. <version>${easyproject.version}</version>
  139. </dependency>
  140. <!-- 核心模块-->
  141. <dependency>
  142. <groupId>com.easyproject</groupId>
  143. <artifactId>easyproject-framework</artifactId>
  144. <version>${easyproject.version}</version>
  145. </dependency>
  146. <!-- 系统模块-->
  147. <dependency>
  148. <groupId>com.easyproject</groupId>
  149. <artifactId>easyproject-system</artifactId>
  150. <version>${easyproject.version}</version>
  151. </dependency>
  152. <!-- 核心模块-用户端-->
  153. <dependency>
  154. <groupId>com.easyproject</groupId>
  155. <artifactId>easyproject-client-core</artifactId>
  156. <version>${easyproject.version}</version>
  157. </dependency>
  158. <!-- 系统模块-用户端业务-->
  159. <dependency>
  160. <groupId>com.easyproject</groupId>
  161. <artifactId>easyproject-client-bus</artifactId>
  162. <version>${easyproject.version}</version>
  163. </dependency>
  164. <!-- 通用工具-->
  165. <dependency>
  166. <groupId>com.easyproject</groupId>
  167. <artifactId>easyproject-common</artifactId>
  168. <version>${easyproject.version}</version>
  169. </dependency>
  170. <!--数据库-->
  171. <dependency>
  172. <groupId>com.easyproject</groupId>
  173. <artifactId>easyproject-service-db</artifactId>
  174. <version>${easyproject.version}</version>
  175. </dependency>
  176. <!--coze平台-->
  177. <dependency>
  178. <groupId>com.coze</groupId>
  179. <artifactId>coze-api</artifactId>
  180. <version>0.2.8</version>
  181. </dependency>
  182. </dependencies>
  183. </dependencyManagement>
  184. <modules>
  185. <module>easyproject-ac-scheduled</module>
  186. <module>easyproject-admin</module>
  187. <module>easyproject-framework</module>
  188. <module>easyproject-system</module>
  189. <module>easyproject-common</module>
  190. <module>easyproject-client</module>
  191. <module>easyproject-client-core</module>
  192. <module>easyproject-client-bus</module>
  193. <module>easyproject-service-db</module>
  194. <module>easyproject-generator</module>
  195. </modules>
  196. <packaging>pom</packaging>
  197. <dependencies>
  198. </dependencies>
  199. <build>
  200. <plugins>
  201. <plugin>
  202. <groupId>org.apache.maven.plugins</groupId>
  203. <artifactId>maven-compiler-plugin</artifactId>
  204. <version>3.1</version>
  205. <configuration>
  206. <source>${java.version}</source>
  207. <target>${java.version}</target>
  208. <encoding>${project.build.sourceEncoding}</encoding>
  209. </configuration>
  210. </plugin>
  211. </plugins>
  212. </build>
  213. <repositories>
  214. <repository>
  215. <id>public</id>
  216. <name>aliyun nexus</name>
  217. <url>https://maven.aliyun.com/repository/public</url>
  218. <releases>
  219. <enabled>true</enabled>
  220. </releases>
  221. </repository>
  222. </repositories>
  223. <pluginRepositories>
  224. <pluginRepository>
  225. <id>public</id>
  226. <name>aliyun nexus</name>
  227. <url>https://maven.aliyun.com/repository/public</url>
  228. <releases>
  229. <enabled>true</enabled>
  230. </releases>
  231. <snapshots>
  232. <enabled>false</enabled>
  233. </snapshots>
  234. </pluginRepository>
  235. </pluginRepositories>
  236. </project>