You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

269 lines
9.5 KiB

  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.chenhai</groupId>
  7. <artifactId>chenhai</artifactId>
  8. <version>3.9.1</version>
  9. <name>chenhai</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>"与牧同行"</description>
  12. <properties>
  13. <chenhai.version>3.9.1</chenhai.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>17</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <mybatis-spring-boot.version>3.0.5</mybatis-spring-boot.version>
  19. <druid.version>1.2.27</druid.version>
  20. <yauaa.version>7.32.0</yauaa.version>
  21. <swagger.version>3.0.0</swagger.version>
  22. <kaptcha.version>2.3.3</kaptcha.version>
  23. <pagehelper.boot.version>2.1.1</pagehelper.boot.version>
  24. <fastjson.version>2.0.60</fastjson.version>
  25. <oshi.version>6.9.1</oshi.version>
  26. <commons.io.version>2.21.0</commons.io.version>
  27. <poi.version>4.1.2</poi.version>
  28. <velocity.version>2.3</velocity.version>
  29. <jwt.version>0.9.1</jwt.version>
  30. <quartz.version>2.5.2</quartz.version>
  31. <mysql.version>8.2.0</mysql.version>
  32. <jaxb-api.version>2.3.1</jaxb-api.version>
  33. <jakarta.version>6.0.0</jakarta.version>
  34. <springdoc.version>2.8.14</springdoc.version>
  35. <sensitive-word.version>0.23.0</sensitive-word.version>
  36. <jupiter.version>5.12.2</jupiter.version>
  37. </properties>
  38. <!-- 依赖声明 -->
  39. <dependencyManagement>
  40. <dependencies>
  41. <!-- SpringBoot的依赖配置-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-dependencies</artifactId>
  45. <version>3.5.8</version>
  46. <type>pom</type>
  47. <scope>import</scope>
  48. </dependency>
  49. <!-- 阿里数据库连接池 -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-3-starter</artifactId>
  53. <version>${druid.version}</version>
  54. </dependency>
  55. <!-- 解析客户端操作系统、浏览器等 -->
  56. <dependency>
  57. <groupId>nl.basjes.parse.useragent</groupId>
  58. <artifactId>yauaa</artifactId>
  59. <version>${yauaa.version}</version>
  60. </dependency>
  61. <!-- pagehelper 分页插件 -->
  62. <dependency>
  63. <groupId>com.github.pagehelper</groupId>
  64. <artifactId>pagehelper-spring-boot-starter</artifactId>
  65. <version>${pagehelper.boot.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.mybatis.spring.boot</groupId>
  69. <artifactId>mybatis-spring-boot-starter</artifactId>
  70. <version>${mybatis-spring-boot.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.mysql</groupId>
  74. <artifactId>mysql-connector-j</artifactId>
  75. <version>${mysql.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>javax.xml.bind</groupId>
  79. <artifactId>jaxb-api</artifactId>
  80. <version>${jaxb-api.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>jakarta.servlet</groupId>
  84. <artifactId>jakarta.servlet-api</artifactId>
  85. <version>${jakarta.version}</version>
  86. </dependency>
  87. <!-- 获取系统信息 -->
  88. <dependency>
  89. <groupId>com.github.oshi</groupId>
  90. <artifactId>oshi-core</artifactId>
  91. <version>${oshi.version}</version>
  92. </dependency>
  93. <!-- spring-doc -->
  94. <dependency>
  95. <groupId>org.springdoc</groupId>
  96. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  97. <version>${springdoc.version}</version>
  98. </dependency>
  99. <!-- io常用工具类 -->
  100. <dependency>
  101. <groupId>commons-io</groupId>
  102. <artifactId>commons-io</artifactId>
  103. <version>${commons.io.version}</version>
  104. </dependency>
  105. <!-- excel工具 -->
  106. <dependency>
  107. <groupId>org.apache.poi</groupId>
  108. <artifactId>poi-ooxml</artifactId>
  109. <version>${poi.version}</version>
  110. </dependency>
  111. <!-- velocity代码生成使用模板 -->
  112. <dependency>
  113. <groupId>org.apache.velocity</groupId>
  114. <artifactId>velocity-engine-core</artifactId>
  115. <version>${velocity.version}</version>
  116. </dependency>
  117. <!-- 定时任务 -->
  118. <dependency>
  119. <groupId>org.quartz-scheduler</groupId>
  120. <artifactId>quartz</artifactId>
  121. <version>${quartz.version}</version>
  122. </dependency>
  123. <!-- 阿里JSON解析器 -->
  124. <dependency>
  125. <groupId>com.alibaba.fastjson2</groupId>
  126. <artifactId>fastjson2</artifactId>
  127. <version>${fastjson.version}</version>
  128. </dependency>
  129. <!-- Token生成与解析-->
  130. <dependency>
  131. <groupId>io.jsonwebtoken</groupId>
  132. <artifactId>jjwt</artifactId>
  133. <version>${jwt.version}</version>
  134. </dependency>
  135. <!-- 验证码 -->
  136. <dependency>
  137. <groupId>pro.fessional</groupId>
  138. <artifactId>kaptcha</artifactId>
  139. <version>${kaptcha.version}</version>
  140. </dependency>
  141. <!-- 定时任务-->
  142. <dependency>
  143. <groupId>com.chenhai</groupId>
  144. <artifactId>chenhai-quartz</artifactId>
  145. <version>${chenhai.version}</version>
  146. </dependency>
  147. <!-- 代码生成-->
  148. <dependency>
  149. <groupId>com.chenhai</groupId>
  150. <artifactId>chenhai-generator</artifactId>
  151. <version>${chenhai.version}</version>
  152. </dependency>
  153. <!-- 核心模块-->
  154. <dependency>
  155. <groupId>com.chenhai</groupId>
  156. <artifactId>chenhai-framework</artifactId>
  157. <version>${chenhai.version}</version>
  158. </dependency>
  159. <!-- 系统模块-->
  160. <dependency>
  161. <groupId>com.chenhai</groupId>
  162. <artifactId>chenhai-system</artifactId>
  163. <version>${chenhai.version}</version>
  164. </dependency>
  165. <!-- 通用工具-->
  166. <dependency>
  167. <groupId>com.chenhai</groupId>
  168. <artifactId>chenhai-common</artifactId>
  169. <version>${chenhai.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.github.houbb</groupId>
  173. <artifactId>sensitive-word</artifactId>
  174. <version>${sensitive-word.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.junit.jupiter</groupId>
  178. <artifactId>junit-jupiter-engine</artifactId>
  179. <version>${jupiter.version}</version>
  180. <!-- <scope>test</scope>-->
  181. </dependency>
  182. </dependencies>
  183. </dependencyManagement>
  184. <modules>
  185. <module>chenhai-admin</module>
  186. <module>chenhai-framework</module>
  187. <module>chenhai-system</module>
  188. <module>chenhai-quartz</module>
  189. <module>chenhai-generator</module>
  190. <module>chenhai-common</module>
  191. </modules>
  192. <packaging>pom</packaging>
  193. <build>
  194. <plugins>
  195. <plugin>
  196. <groupId>org.apache.maven.plugins</groupId>
  197. <artifactId>maven-compiler-plugin</artifactId>
  198. <version>3.13.0</version>
  199. <configuration>
  200. <parameters>true</parameters>
  201. <source>${java.version}</source>
  202. <target>${java.version}</target>
  203. <encoding>${project.build.sourceEncoding}</encoding>
  204. </configuration>
  205. </plugin>
  206. <plugin>
  207. <groupId>org.springframework.boot</groupId>
  208. <artifactId>spring-boot-maven-plugin</artifactId>
  209. <version>3.3.0</version>
  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>