pom.xml 7.9 KB

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