pom.xml 12 KB

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