pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.ruoyi</groupId>
  6. <artifactId>ruoyi</artifactId>
  7. <version>2.0.0</version>
  8. <packaging>jar</packaging>
  9. <name>ruoyi</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.1.RELEASE</version>
  16. <relativePath />
  17. </parent>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <java.version>1.8</java.version>
  22. <mybatis.spring.boot.starter.version>1.3.2</mybatis.spring.boot.starter.version>
  23. <pagehelper.spring.boot.starter.version>1.2.5</pagehelper.spring.boot.starter.version>
  24. <fastjson.version>1.2.47</fastjson.version>
  25. <druid.version>1.1.14</druid.version>
  26. <commons.io.version>2.5</commons.io.version>
  27. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  28. <bitwalker.version>1.19</bitwalker.version>
  29. <jwt.version>0.9.0</jwt.version>
  30. <swagger.version>2.9.2</swagger.version>
  31. <poi.version>3.17</poi.version>
  32. <oshi.version>3.9.1</oshi.version>
  33. <velocity.version>1.7</velocity.version>
  34. </properties>
  35. <dependencies>
  36. <!-- SpringBoot 核心包 -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter</artifactId>
  40. <!--
  41. <exclusions>
  42. <exclusion>
  43. <artifactId>spring-boot-starter-tomcat</artifactId>
  44. <groupId>org.springframework.boot</groupId>
  45. </exclusion>
  46. </exclusions>
  47. -->
  48. </dependency>
  49. <!-- SpringBoot 测试 -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <!-- SpringBoot 拦截器 -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-aop</artifactId>
  59. </dependency>
  60. <!-- SpringBoot Web容器 -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-web</artifactId>
  64. </dependency>
  65. <!-- spring-boot-devtools -->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-devtools</artifactId>
  69. <optional>true</optional> <!-- 表示依赖不会传递 -->
  70. </dependency>
  71. <!-- spring security 安全认证 -->
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-security</artifactId>
  75. </dependency>
  76. <!-- redis 缓存操作 -->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-redis</artifactId>
  80. </dependency>
  81. <!-- pool 对象池 -->
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-pool2</artifactId>
  85. </dependency>
  86. <!-- Mysql驱动包 -->
  87. <dependency>
  88. <groupId>mysql</groupId>
  89. <artifactId>mysql-connector-java</artifactId>
  90. <scope>runtime</scope>
  91. </dependency>
  92. <!-- SpringBoot集成mybatis框架 -->
  93. <dependency>
  94. <groupId>org.mybatis.spring.boot</groupId>
  95. <artifactId>mybatis-spring-boot-starter</artifactId>
  96. <version>${mybatis.spring.boot.starter.version}</version>
  97. </dependency>
  98. <!-- pagehelper 分页插件 -->
  99. <dependency>
  100. <groupId>com.github.pagehelper</groupId>
  101. <artifactId>pagehelper-spring-boot-starter</artifactId>
  102. <version>${pagehelper.spring.boot.starter.version}</version>
  103. </dependency>
  104. <!--阿里数据库连接池 -->
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>druid-spring-boot-starter</artifactId>
  108. <version>${druid.version}</version>
  109. </dependency>
  110. <!--常用工具类 -->
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-lang3</artifactId>
  114. </dependency>
  115. <!--io常用工具类 -->
  116. <dependency>
  117. <groupId>commons-io</groupId>
  118. <artifactId>commons-io</artifactId>
  119. <version>${commons.io.version}</version>
  120. </dependency>
  121. <!--文件上传工具类 -->
  122. <dependency>
  123. <groupId>commons-fileupload</groupId>
  124. <artifactId>commons-fileupload</artifactId>
  125. <version>${commons.fileupload.version}</version>
  126. </dependency>
  127. <!-- 解析客户端操作系统、浏览器等 -->
  128. <dependency>
  129. <groupId>eu.bitwalker</groupId>
  130. <artifactId>UserAgentUtils</artifactId>
  131. <version>${bitwalker.version}</version>
  132. </dependency>
  133. <!-- 阿里JSON解析器 -->
  134. <dependency>
  135. <groupId>com.alibaba</groupId>
  136. <artifactId>fastjson</artifactId>
  137. <version>${fastjson.version}</version>
  138. </dependency>
  139. <!--Spring框架基本的核心工具-->
  140. <dependency>
  141. <groupId>org.springframework</groupId>
  142. <artifactId>spring-context-support</artifactId>
  143. </dependency>
  144. <!--Token生成与解析-->
  145. <dependency>
  146. <groupId>io.jsonwebtoken</groupId>
  147. <artifactId>jjwt</artifactId>
  148. <version>${jwt.version}</version>
  149. </dependency>
  150. <!-- swagger2-->
  151. <dependency>
  152. <groupId>io.springfox</groupId>
  153. <artifactId>springfox-swagger2</artifactId>
  154. <version>${swagger.version}</version>
  155. <exclusions>
  156. <exclusion>
  157. <groupId>io.swagger</groupId>
  158. <artifactId>swagger-annotations</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <groupId>io.swagger</groupId>
  162. <artifactId>swagger-models</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  167. <dependency>
  168. <groupId>io.swagger</groupId>
  169. <artifactId>swagger-annotations</artifactId>
  170. <version>1.5.21</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>io.swagger</groupId>
  174. <artifactId>swagger-models</artifactId>
  175. <version>1.5.21</version>
  176. </dependency>
  177. <!-- swagger2-UI-->
  178. <dependency>
  179. <groupId>io.springfox</groupId>
  180. <artifactId>springfox-swagger-ui</artifactId>
  181. <version>${swagger.version}</version>
  182. </dependency>
  183. <!-- 获取系统信息 -->
  184. <dependency>
  185. <groupId>com.github.oshi</groupId>
  186. <artifactId>oshi-core</artifactId>
  187. <version>${oshi.version}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>net.java.dev.jna</groupId>
  191. <artifactId>jna</artifactId>
  192. </dependency>
  193. <dependency>
  194. <groupId>net.java.dev.jna</groupId>
  195. <artifactId>jna-platform</artifactId>
  196. </dependency>
  197. <!-- excel工具 -->
  198. <dependency>
  199. <groupId>org.apache.poi</groupId>
  200. <artifactId>poi-ooxml</artifactId>
  201. <version>${poi.version}</version>
  202. </dependency>
  203. <!--velocity代码生成使用模板 -->
  204. <dependency>
  205. <groupId>org.apache.velocity</groupId>
  206. <artifactId>velocity</artifactId>
  207. <version>${velocity.version}</version>
  208. </dependency>
  209. </dependencies>
  210. <build>
  211. <finalName>${project.artifactId}</finalName>
  212. <plugins>
  213. <plugin>
  214. <groupId>org.springframework.boot</groupId>
  215. <artifactId>spring-boot-maven-plugin</artifactId>
  216. <configuration>
  217. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  218. </configuration>
  219. </plugin>
  220. </plugins>
  221. </build>
  222. <repositories>
  223. <repository>
  224. <id>public</id>
  225. <name>aliyun nexus</name>
  226. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  227. <releases>
  228. <enabled>true</enabled>
  229. </releases>
  230. </repository>
  231. </repositories>
  232. <pluginRepositories>
  233. <pluginRepository>
  234. <id>public</id>
  235. <name>aliyun nexus</name>
  236. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  237. <releases>
  238. <enabled>true</enabled>
  239. </releases>
  240. <snapshots>
  241. <enabled>false</enabled>
  242. </snapshots>
  243. </pluginRepository>
  244. </pluginRepositories>
  245. </project>