pom.xml 12 KB

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