园林绿化
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.

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