pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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.ctix</groupId>
  7. <artifactId>ctix</artifactId>
  8. <version>3.9.0</version>
  9. <name>ctix</name>
  10. <url>http://www.ctix.vip</url>
  11. <description>XY管理系统</description>
  12. <properties>
  13. <ctix.version>3.9.0</ctix.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.3</mybatis-spring-boot.version>
  19. <druid.version>1.2.23</druid.version>
  20. <bitwalker.version>1.21</bitwalker.version>
  21. <swagger.version>3.0.0</swagger.version>
  22. <kaptcha.version>2.3.3</kaptcha.version>
  23. <pagehelper.boot.version>2.1.0</pagehelper.boot.version>
  24. <fastjson.version>2.0.57</fastjson.version>
  25. <oshi.version>6.8.1</oshi.version>
  26. <commons.io.version>2.19.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. <mysql.version>8.2.0</mysql.version>
  31. <jaxb-api.version>2.3.1</jaxb-api.version>
  32. <jakarta.version>6.0.0</jakarta.version>
  33. <springdoc.version>2.6.0</springdoc.version>
  34. <lombok.version>1.18.32</lombok.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. <dependency>
  134. <groupId>org.projectlombok</groupId>
  135. <artifactId>lombok</artifactId>
  136. <version>${lombok.version}</version>
  137. </dependency>
  138. <!-- 定时任务-->
  139. <dependency>
  140. <groupId>com.ctix</groupId>
  141. <artifactId>ctix-quartz</artifactId>
  142. <version>${ctix.version}</version>
  143. </dependency>
  144. <!-- 代码生成-->
  145. <dependency>
  146. <groupId>com.ctix</groupId>
  147. <artifactId>ctix-generator</artifactId>
  148. <version>${ctix.version}</version>
  149. </dependency>
  150. <!-- 核心模块-->
  151. <dependency>
  152. <groupId>com.ctix</groupId>
  153. <artifactId>ctix-framework</artifactId>
  154. <version>${ctix.version}</version>
  155. </dependency>
  156. <!-- 系统模块-->
  157. <dependency>
  158. <groupId>com.ctix</groupId>
  159. <artifactId>ctix-system</artifactId>
  160. <version>${ctix.version}</version>
  161. </dependency>
  162. <!-- 通用工具-->
  163. <dependency>
  164. <groupId>com.ctix</groupId>
  165. <artifactId>ctix-common</artifactId>
  166. <version>${ctix.version}</version>
  167. </dependency>
  168. </dependencies>
  169. </dependencyManagement>
  170. <modules>
  171. <module>ctix-admin</module>
  172. <module>ctix-framework</module>
  173. <module>ctix-system</module>
  174. <module>ctix-quartz</module>
  175. <module>ctix-generator</module>
  176. <module>ctix-common</module>
  177. <module>ctix-freeswitch</module>
  178. </modules>
  179. <packaging>pom</packaging>
  180. <build>
  181. <plugins>
  182. <plugin>
  183. <groupId>org.apache.maven.plugins</groupId>
  184. <artifactId>maven-compiler-plugin</artifactId>
  185. <version>3.13.0</version>
  186. <configuration>
  187. <parameters>true</parameters>
  188. <source>${java.version}</source>
  189. <target>${java.version}</target>
  190. <encoding>${project.build.sourceEncoding}</encoding>
  191. </configuration>
  192. </plugin>
  193. <plugin>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-maven-plugin</artifactId>
  196. <version>3.3.0</version>
  197. </plugin>
  198. </plugins>
  199. </build>
  200. <repositories>
  201. <repository>
  202. <id>public</id>
  203. <name>aliyun nexus</name>
  204. <url>https://maven.aliyun.com/repository/public</url>
  205. <releases>
  206. <enabled>true</enabled>
  207. </releases>
  208. </repository>
  209. </repositories>
  210. <pluginRepositories>
  211. <pluginRepository>
  212. <id>public</id>
  213. <name>aliyun nexus</name>
  214. <url>https://maven.aliyun.com/repository/public</url>
  215. <releases>
  216. <enabled>true</enabled>
  217. </releases>
  218. <snapshots>
  219. <enabled>false</enabled>
  220. </snapshots>
  221. </pluginRepository>
  222. </pluginRepositories>
  223. </project>