pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  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.ruixuan</groupId>
  7. <artifactId>ruixuan</artifactId>
  8. <version>3.8.2</version>
  9. <!-- <name>ruixuan</name>
  10. <url>http://www.ruixuan.vip</url>
  11. <description>若依管理系统</description>-->
  12. <properties>
  13. <ruixuan.version>3.8.2</ruixuan.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  18. <druid.version>1.2.8</druid.version>
  19. <bitwalker.version>1.21</bitwalker.version>
  20. <swagger.version>3.0.0</swagger.version>
  21. <kaptcha.version>2.3.2</kaptcha.version>
  22. <mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version>
  23. <pagehelper.boot.version>1.4.1</pagehelper.boot.version>
  24. <fastjson.version>1.2.80</fastjson.version>
  25. <oshi.version>6.1.2</oshi.version>
  26. <jna.version>5.10.0</jna.version>
  27. <commons.io.version>2.11.0</commons.io.version>
  28. <commons.fileupload.version>1.4</commons.fileupload.version>
  29. <commons.collections.version>3.2.2</commons.collections.version>
  30. <hutool-all.version>5.3.8</hutool-all.version>
  31. <lombok.version>1.16.20</lombok.version>
  32. <cos_api.version>5.6.25</cos_api.version>
  33. <poi.version>4.1.2</poi.version>
  34. <velocity.version>2.3</velocity.version>
  35. <jwt.version>0.9.1</jwt.version>
  36. </properties>
  37. <!-- 依赖声明 -->
  38. <dependencyManagement>
  39. <dependencies>
  40. <!-- SpringBoot的依赖配置-->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-dependencies</artifactId>
  44. <version>2.5.12</version>
  45. <type>pom</type>
  46. <scope>import</scope>
  47. </dependency>
  48. <!-- 阿里数据库连接池 -->
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>druid-spring-boot-starter</artifactId>
  52. <version>${druid.version}</version>
  53. </dependency>
  54. <!-- 解析客户端操作系统、浏览器等 -->
  55. <dependency>
  56. <groupId>eu.bitwalker</groupId>
  57. <artifactId>UserAgentUtils</artifactId>
  58. <version>${bitwalker.version}</version>
  59. </dependency>
  60. <!-- SpringBoot集成mybatis框架 -->
  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. <!-- pagehelper 分页插件 -->
  67. <dependency>
  68. <groupId>com.github.pagehelper</groupId>
  69. <artifactId>pagehelper-spring-boot-starter</artifactId>
  70. <version>${pagehelper.boot.version}</version>
  71. </dependency>
  72. <!-- 获取系统信息 -->
  73. <dependency>
  74. <groupId>com.github.oshi</groupId>
  75. <artifactId>oshi-core</artifactId>
  76. <version>${oshi.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>net.java.dev.jna</groupId>
  80. <artifactId>jna</artifactId>
  81. <version>${jna.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>net.java.dev.jna</groupId>
  85. <artifactId>jna-platform</artifactId>
  86. <version>${jna.version}</version>
  87. </dependency>
  88. <!-- Swagger3依赖 -->
  89. <dependency>
  90. <groupId>io.springfox</groupId>
  91. <artifactId>springfox-boot-starter</artifactId>
  92. <version>${swagger.version}</version>
  93. <exclusions>
  94. <exclusion>
  95. <groupId>io.swagger</groupId>
  96. <artifactId>swagger-models</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. <!-- io常用工具类 -->
  101. <dependency>
  102. <groupId>commons-io</groupId>
  103. <artifactId>commons-io</artifactId>
  104. <version>${commons.io.version}</version>
  105. </dependency>
  106. <!-- 文件上传工具类 -->
  107. <dependency>
  108. <groupId>commons-fileupload</groupId>
  109. <artifactId>commons-fileupload</artifactId>
  110. <version>${commons.fileupload.version}</version>
  111. </dependency>
  112. <!-- excel工具 -->
  113. <dependency>
  114. <groupId>org.apache.poi</groupId>
  115. <artifactId>poi-ooxml</artifactId>
  116. <version>${poi.version}</version>
  117. </dependency>
  118. <!-- velocity代码生成使用模板 -->
  119. <dependency>
  120. <groupId>org.apache.velocity</groupId>
  121. <artifactId>velocity-engine-core</artifactId>
  122. <version>${velocity.version}</version>
  123. </dependency>
  124. <!-- collections工具类 -->
  125. <dependency>
  126. <groupId>commons-collections</groupId>
  127. <artifactId>commons-collections</artifactId>
  128. <version>${commons.collections.version}</version>
  129. </dependency>
  130. <!-- hutool工具类-->
  131. <dependency>
  132. <groupId>cn.hutool</groupId>
  133. <artifactId>hutool-all</artifactId>
  134. <version>${hutool-all.version}</version>
  135. </dependency>
  136. <!-- hutool工具类-->
  137. <dependency>
  138. <groupId>org.projectlombok</groupId>
  139. <artifactId>lombok</artifactId>
  140. <version>${lombok.version}</version>
  141. </dependency>
  142. <!--cos_api-->
  143. <dependency>
  144. <groupId>com.qcloud</groupId>
  145. <artifactId>cos_api</artifactId>
  146. <version>${cos_api.version}</version>
  147. </dependency>
  148. <!-- 阿里JSON解析器 -->
  149. <dependency>
  150. <groupId>com.alibaba</groupId>
  151. <artifactId>fastjson</artifactId>
  152. <version>${fastjson.version}</version>
  153. </dependency>
  154. <!-- Token生成与解析-->
  155. <dependency>
  156. <groupId>io.jsonwebtoken</groupId>
  157. <artifactId>jjwt</artifactId>
  158. <version>${jwt.version}</version>
  159. </dependency>
  160. <!-- 验证码 -->
  161. <dependency>
  162. <groupId>com.github.penggle</groupId>
  163. <artifactId>kaptcha</artifactId>
  164. <version>${kaptcha.version}</version>
  165. </dependency>
  166. <!-- 定时任务-->
  167. <dependency>
  168. <groupId>com.ruixuan</groupId>
  169. <artifactId>ruixuan-quartz</artifactId>
  170. <version>${ruixuan.version}</version>
  171. </dependency>
  172. <!-- 代码生成-->
  173. <dependency>
  174. <groupId>com.ruixuan</groupId>
  175. <artifactId>ruixuan-generator</artifactId>
  176. <version>${ruixuan.version}</version>
  177. </dependency>
  178. <!-- 核心模块-->
  179. <dependency>
  180. <groupId>com.ruixuan</groupId>
  181. <artifactId>ruixuan-framework</artifactId>
  182. <version>${ruixuan.version}</version>
  183. </dependency>
  184. <!-- 系统模块-->
  185. <dependency>
  186. <groupId>com.ruixuan</groupId>
  187. <artifactId>ruixuan-system</artifactId>
  188. <version>${ruixuan.version}</version>
  189. </dependency>
  190. <!-- 通用工具-->
  191. <dependency>
  192. <groupId>com.ruixuan</groupId>
  193. <artifactId>ruixuan-common</artifactId>
  194. <version>${ruixuan.version}</version>
  195. </dependency>
  196. <!-- 销售线索模块-->
  197. <dependency>
  198. <groupId>com.ruixuan</groupId>
  199. <artifactId>ruixuan-salesLeads</artifactId>
  200. <version>${ruixuan.version}</version>
  201. </dependency>
  202. <!-- 直播业务模块-->
  203. <dependency>
  204. <groupId>com.ruixuan</groupId>
  205. <artifactId>ruixuan-live</artifactId>
  206. <version>${ruixuan.version}</version>
  207. </dependency>
  208. </dependencies>
  209. </dependencyManagement>
  210. <modules>
  211. <module>ruixuan-admin</module>
  212. <module>ruixuan-framework</module>
  213. <module>ruixuan-system</module>
  214. <module>ruixuan-quartz</module>
  215. <module>ruixuan-generator</module>
  216. <module>ruixuan-common</module>
  217. <module>ruixuan-salesLeads</module>
  218. <module>ruixuan-live</module>
  219. </modules>
  220. <packaging>pom</packaging>
  221. <dependencies>
  222. </dependencies>
  223. <build>
  224. <plugins>
  225. <plugin>
  226. <groupId>org.apache.maven.plugins</groupId>
  227. <artifactId>maven-compiler-plugin</artifactId>
  228. <version>3.1</version>
  229. <configuration>
  230. <source>${java.version}</source>
  231. <target>${java.version}</target>
  232. <encoding>${project.build.sourceEncoding}</encoding>
  233. </configuration>
  234. </plugin>
  235. </plugins>
  236. </build>
  237. <repositories>
  238. <repository>
  239. <id>public</id>
  240. <name>aliyun nexus</name>
  241. <url>https://maven.aliyun.com/repository/public</url>
  242. <releases>
  243. <enabled>true</enabled>
  244. </releases>
  245. </repository>
  246. </repositories>
  247. <pluginRepositories>
  248. <pluginRepository>
  249. <id>public</id>
  250. <name>aliyun nexus</name>
  251. <url>https://maven.aliyun.com/repository/public</url>
  252. <releases>
  253. <enabled>true</enabled>
  254. </releases>
  255. <snapshots>
  256. <enabled>false</enabled>
  257. </snapshots>
  258. </pluginRepository>
  259. </pluginRepositories>
  260. </project>