pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.lij</groupId>
  6. <artifactId>himeeter</artifactId>
  7. <version>1.0.0</version>
  8. <name>${project.artifactId}</name>
  9. <url/>
  10. <description>
  11. himeeter管理系统
  12. </description>
  13. <properties>
  14. <himeeter.version>1.0.0</himeeter.version>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>17</java.version>
  18. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  19. <mybatis-spring-boot.version>3.0.3</mybatis-spring-boot.version>
  20. <druid.version>1.2.23</druid.version>
  21. <bitwalker.version>1.21</bitwalker.version>
  22. <swagger.version>3.0.0</swagger.version>
  23. <kaptcha.version>2.3.3</kaptcha.version>
  24. <pagehelper.boot.version>2.1.0</pagehelper.boot.version>
  25. <fastjson.version>2.0.53</fastjson.version>
  26. <oshi.version>6.6.5</oshi.version>
  27. <commons.io.version>2.13.0</commons.io.version>
  28. <poi.version>4.1.2</poi.version>
  29. <velocity.version>2.3</velocity.version>
  30. <jwt.version>0.9.1</jwt.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.6.0</springdoc.version>
  35. </properties>
  36. <!-- 依赖声明 -->
  37. <dependencyManagement>
  38. <dependencies>
  39. <!-- SpringBoot的依赖配置-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-dependencies</artifactId>
  43. <version>3.3.5</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <!-- 阿里数据库连接池 -->
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>druid-spring-boot-3-starter</artifactId>
  51. <version>${druid.version}</version>
  52. </dependency>
  53. <!-- 解析客户端操作系统、浏览器等 -->
  54. <dependency>
  55. <groupId>eu.bitwalker</groupId>
  56. <artifactId>UserAgentUtils</artifactId>
  57. <version>${bitwalker.version}</version>
  58. </dependency>
  59. <!-- pagehelper 分页插件 -->
  60. <dependency>
  61. <groupId>com.github.pagehelper</groupId>
  62. <artifactId>pagehelper-spring-boot-starter</artifactId>
  63. <version>${pagehelper.boot.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis.spring.boot</groupId>
  67. <artifactId>mybatis-spring-boot-starter</artifactId>
  68. <version>${mybatis-spring-boot.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.mysql</groupId>
  72. <artifactId>mysql-connector-j</artifactId>
  73. <version>${mysql.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>javax.xml.bind</groupId>
  77. <artifactId>jaxb-api</artifactId>
  78. <version>${jaxb-api.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>jakarta.servlet</groupId>
  82. <artifactId>jakarta.servlet-api</artifactId>
  83. <version>${jakarta.version}</version>
  84. </dependency>
  85. <!-- 获取系统信息 -->
  86. <dependency>
  87. <groupId>com.github.oshi</groupId>
  88. <artifactId>oshi-core</artifactId>
  89. <version>${oshi.version}</version>
  90. </dependency>
  91. <!-- spring-doc -->
  92. <dependency>
  93. <groupId>org.springdoc</groupId>
  94. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  95. <version>${springdoc.version}</version>
  96. </dependency>
  97. <!-- io常用工具类 -->
  98. <dependency>
  99. <groupId>commons-io</groupId>
  100. <artifactId>commons-io</artifactId>
  101. <version>${commons.io.version}</version>
  102. </dependency>
  103. <!-- excel工具 -->
  104. <dependency>
  105. <groupId>org.apache.poi</groupId>
  106. <artifactId>poi-ooxml</artifactId>
  107. <version>${poi.version}</version>
  108. </dependency>
  109. <!-- velocity代码生成使用模板 -->
  110. <dependency>
  111. <groupId>org.apache.velocity</groupId>
  112. <artifactId>velocity-engine-core</artifactId>
  113. <version>${velocity.version}</version>
  114. </dependency>
  115. <!-- 阿里JSON解析器 -->
  116. <dependency>
  117. <groupId>com.alibaba.fastjson2</groupId>
  118. <artifactId>fastjson2</artifactId>
  119. <version>${fastjson.version}</version>
  120. </dependency>
  121. <!-- Token生成与解析-->
  122. <dependency>
  123. <groupId>io.jsonwebtoken</groupId>
  124. <artifactId>jjwt</artifactId>
  125. <version>${jwt.version}</version>
  126. </dependency>
  127. <!-- 验证码 -->
  128. <dependency>
  129. <groupId>pro.fessional</groupId>
  130. <artifactId>kaptcha</artifactId>
  131. <version>${kaptcha.version}</version>
  132. </dependency>
  133. <!-- 定时任务-->
  134. <dependency>
  135. <groupId>com.lij</groupId>
  136. <artifactId>himeeter-quartz</artifactId>
  137. <version>${himeeter.version}</version>
  138. </dependency>
  139. <!-- 代码生成-->
  140. <dependency>
  141. <groupId>com.lij</groupId>
  142. <artifactId>himeeter-generator</artifactId>
  143. <version>${himeeter.version}</version>
  144. </dependency>
  145. <!-- 核心模块-->
  146. <dependency>
  147. <groupId>com.lij</groupId>
  148. <artifactId>himeeter-framework</artifactId>
  149. <version>${himeeter.version}</version>
  150. </dependency>
  151. <!-- 系统模块-->
  152. <dependency>
  153. <groupId>com.lij</groupId>
  154. <artifactId>himeeter-system</artifactId>
  155. <version>${himeeter.version}</version>
  156. </dependency>
  157. <!-- 通用工具-->
  158. <dependency>
  159. <groupId>com.lij</groupId>
  160. <artifactId>himeeter-common</artifactId>
  161. <version>${himeeter.version}</version>
  162. </dependency>
  163. </dependencies>
  164. </dependencyManagement>
  165. <modules>
  166. <module>himeeter-admin</module>
  167. <module>himeeter-framework</module>
  168. <module>himeeter-system</module>
  169. <module>himeeter-quartz</module>
  170. <module>himeeter-generator</module>
  171. <module>himeeter-common</module>
  172. </modules>
  173. <packaging>pom</packaging>
  174. <build>
  175. <plugins>
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-compiler-plugin</artifactId>
  179. <version>3.13.0</version>
  180. <configuration>
  181. <parameters>true</parameters>
  182. <source>${java.version}</source>
  183. <target>${java.version}</target>
  184. <encoding>${project.build.sourceEncoding}</encoding>
  185. </configuration>
  186. </plugin>
  187. <plugin>
  188. <groupId>org.springframework.boot</groupId>
  189. <artifactId>spring-boot-maven-plugin</artifactId>
  190. <version>3.3.0</version>
  191. </plugin>
  192. </plugins>
  193. </build>
  194. <repositories>
  195. <repository>
  196. <id>public</id>
  197. <name>aliyun nexus</name>
  198. <url>https://maven.aliyun.com/repository/public</url>
  199. <releases>
  200. <enabled>true</enabled>
  201. </releases>
  202. </repository>
  203. </repositories>
  204. <pluginRepositories>
  205. <pluginRepository>
  206. <id>public</id>
  207. <name>aliyun nexus</name>
  208. <url>https://maven.aliyun.com/repository/public</url>
  209. <releases>
  210. <enabled>true</enabled>
  211. </releases>
  212. <snapshots>
  213. <enabled>false</enabled>
  214. </snapshots>
  215. </pluginRepository>
  216. </pluginRepositories>
  217. </project>