pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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.5</version>
  8. <packaging>jar</packaging>
  9. <name>RuoYi</name>
  10. <description>若依管理系统</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.10.RELEASE</version>
  15. <relativePath />
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <shiro.version>1.3.2</shiro.version>
  22. <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
  23. <thymeleaf-layout-dialect.version>2.0.1</thymeleaf-layout-dialect.version>
  24. <thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
  25. <mybatis.spring.boot.starter.version>1.1.1</mybatis.spring.boot.starter.version>
  26. <pagehelper.spring.boot.starter.version>1.2.3</pagehelper.spring.boot.starter.version>
  27. <fastjson.version>1.2.31</fastjson.version>
  28. <druid.version>1.0.28</druid.version>
  29. <commons.lang3.version>3.6</commons.lang3.version>
  30. <commons.io.version>2.5</commons.io.version>
  31. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  32. <bitwalker.version>1.19</bitwalker.version>
  33. <lombok.version>1.16.18</lombok.version>
  34. <velocity.version>1.7</velocity.version>
  35. <quartz.version>2.3.0</quartz.version>
  36. <kaptcha.version>2.3.2</kaptcha.version>
  37. <swagger.version>2.7.0</swagger.version>
  38. </properties>
  39. <dependencies>
  40. <!-- SpringBoot 核心包 -->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter</artifactId>
  44. <!--
  45. <exclusions>
  46. <exclusion>
  47. <artifactId>spring-boot-starter-tomcat</artifactId>
  48. <groupId>org.springframework.boot</groupId>
  49. </exclusion>
  50. </exclusions>
  51. -->
  52. </dependency>
  53. <!-- SpringBoot 测试 -->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <!-- SpringBoot 拦截器 -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-aop</artifactId>
  63. </dependency>
  64. <!-- SpringBoot Web容器 -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-web</artifactId>
  68. </dependency>
  69. <!-- SpringBoot集成thymeleaf模板 -->
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  73. </dependency>
  74. <!-- thymeleaf网页解析 -->
  75. <dependency>
  76. <groupId>net.sourceforge.nekohtml</groupId>
  77. <artifactId>nekohtml</artifactId>
  78. </dependency>
  79. <!-- Mysql驱动包 -->
  80. <dependency>
  81. <groupId>mysql</groupId>
  82. <artifactId>mysql-connector-java</artifactId>
  83. </dependency>
  84. <!-- SpringBoot集成mybatis框架 -->
  85. <dependency>
  86. <groupId>org.mybatis.spring.boot</groupId>
  87. <artifactId>mybatis-spring-boot-starter</artifactId>
  88. <version>${mybatis.spring.boot.starter.version}</version>
  89. </dependency>
  90. <!-- pagehelper 分页插件 -->
  91. <dependency>
  92. <groupId>com.github.pagehelper</groupId>
  93. <artifactId>pagehelper-spring-boot-starter</artifactId>
  94. <version>${pagehelper.spring.boot.starter.version}</version>
  95. </dependency>
  96. <!--阿里数据库连接池 -->
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>druid</artifactId>
  100. <version>${druid.version}</version>
  101. </dependency>
  102. <!--常用工具类 -->
  103. <dependency>
  104. <groupId>org.apache.commons</groupId>
  105. <artifactId>commons-lang3</artifactId>
  106. <version>${commons.lang3.version}</version>
  107. </dependency>
  108. <!--io常用工具类 -->
  109. <dependency>
  110. <groupId>commons-io</groupId>
  111. <artifactId>commons-io</artifactId>
  112. <version>${commons.io.version}</version>
  113. </dependency>
  114. <!--文件上传工具类 -->
  115. <dependency>
  116. <groupId>commons-fileupload</groupId>
  117. <artifactId>commons-fileupload</artifactId>
  118. <version>${commons.fileupload.version}</version>
  119. </dependency>
  120. <!--Shiro核心框架 -->
  121. <dependency>
  122. <groupId>org.apache.shiro</groupId>
  123. <artifactId>shiro-core</artifactId>
  124. <version>${shiro.version}</version>
  125. </dependency>
  126. <!-- Shiro使用Srping框架 -->
  127. <dependency>
  128. <groupId>org.apache.shiro</groupId>
  129. <artifactId>shiro-spring</artifactId>
  130. <version>${shiro.version}</version>
  131. </dependency>
  132. <!-- Shiro使用EhCache缓存框架 -->
  133. <dependency>
  134. <groupId>org.apache.shiro</groupId>
  135. <artifactId>shiro-ehcache</artifactId>
  136. <version>${shiro.version}</version>
  137. </dependency>
  138. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  139. <dependency>
  140. <groupId>com.github.theborakompanioni</groupId>
  141. <artifactId>thymeleaf-extras-shiro</artifactId>
  142. <version>${thymeleaf.extras.shiro.version}</version>
  143. </dependency>
  144. <!-- 阿里JSON解析器 -->
  145. <dependency>
  146. <groupId>com.alibaba</groupId>
  147. <artifactId>fastjson</artifactId>
  148. <version>${fastjson.version}</version>
  149. </dependency>
  150. <!-- 解析客户端操作系统、浏览器等 -->
  151. <dependency>
  152. <groupId>eu.bitwalker</groupId>
  153. <artifactId>UserAgentUtils</artifactId>
  154. <version>${bitwalker.version}</version>
  155. </dependency>
  156. <!--Spring框架基本的核心工具-->
  157. <dependency>
  158. <groupId>org.springframework</groupId>
  159. <artifactId>spring-context-support</artifactId>
  160. </dependency>
  161. <!-- 定时任务 -->
  162. <dependency>
  163. <groupId>org.quartz-scheduler</groupId>
  164. <artifactId>quartz</artifactId>
  165. <version>${quartz.version}</version>
  166. <exclusions>
  167. <exclusion>
  168. <groupId>com.mchange</groupId>
  169. <artifactId>c3p0</artifactId>
  170. </exclusion>
  171. </exclusions>
  172. </dependency>
  173. <!--velocity代码生成使用模板 -->
  174. <dependency>
  175. <groupId>org.apache.velocity</groupId>
  176. <artifactId>velocity</artifactId>
  177. <version>${velocity.version}</version>
  178. </dependency>
  179. <!--验证码 -->
  180. <dependency>
  181. <groupId>com.github.penggle</groupId>
  182. <artifactId>kaptcha</artifactId>
  183. <version>${kaptcha.version}</version>
  184. <exclusions>
  185. <exclusion>
  186. <artifactId>javax.servlet-api</artifactId>
  187. <groupId>javax.servlet</groupId>
  188. </exclusion>
  189. </exclusions>
  190. </dependency>
  191. <!-- swagger2-->
  192. <dependency>
  193. <groupId>io.springfox</groupId>
  194. <artifactId>springfox-swagger2</artifactId>
  195. <version>${swagger.version}</version>
  196. </dependency>
  197. <!-- swagger2-UI-->
  198. <dependency>
  199. <groupId>io.springfox</groupId>
  200. <artifactId>springfox-swagger-ui</artifactId>
  201. <version>${swagger.version}</version>
  202. </dependency>
  203. </dependencies>
  204. <build>
  205. <finalName>${project.artifactId}</finalName>
  206. <plugins>
  207. <plugin>
  208. <groupId>org.springframework.boot</groupId>
  209. <artifactId>spring-boot-maven-plugin</artifactId>
  210. <configuration>
  211. <executable>true</executable>
  212. </configuration>
  213. </plugin>
  214. </plugins>
  215. </build>
  216. <repositories>
  217. <repository>
  218. <id>public</id>
  219. <name>aliyun nexus</name>
  220. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  221. <releases>
  222. <enabled>true</enabled>
  223. </releases>
  224. </repository>
  225. </repositories>
  226. <pluginRepositories>
  227. <pluginRepository>
  228. <id>public</id>
  229. <name>aliyun nexus</name>
  230. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  231. <releases>
  232. <enabled>true</enabled>
  233. </releases>
  234. <snapshots>
  235. <enabled>false</enabled>
  236. </snapshots>
  237. </pluginRepository>
  238. </pluginRepositories>
  239. </project>