pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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.1</version>
  8. <packaging>war</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. <fastjson.version>1.2.31</fastjson.version>
  27. <druid.version>1.0.28</druid.version>
  28. <commons.lang3.version>3.6</commons.lang3.version>
  29. <bitwalker.version>1.19</bitwalker.version>
  30. <lombok.version>1.16.18</lombok.version>
  31. <mybatisplus-spring-boot-starter.version>1.0.4</mybatisplus-spring-boot-starter.version>
  32. <velocity.version>1.7</velocity.version>
  33. <quartz.version>2.3.0</quartz.version>
  34. </properties>
  35. <dependencies>
  36. <!-- SpringBoot 核心包 -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter</artifactId>
  40. <exclusions>
  41. <exclusion>
  42. <artifactId>spring-boot-starter-tomcat</artifactId>
  43. <groupId>org.springframework.boot</groupId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <!-- SpringBoot 测试 -->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <!-- SpringBoot 拦截器 -->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-aop</artifactId>
  57. </dependency>
  58. <!-- SpringBoot Web容器 -->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-web</artifactId>
  62. </dependency>
  63. <!-- SpringBoot集成thymeleaf模板 -->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  67. </dependency>
  68. <!-- thymeleaf网页解析 -->
  69. <dependency>
  70. <groupId>net.sourceforge.nekohtml</groupId>
  71. <artifactId>nekohtml</artifactId>
  72. </dependency>
  73. <!-- Mysql驱动包 -->
  74. <dependency>
  75. <groupId>mysql</groupId>
  76. <artifactId>mysql-connector-java</artifactId>
  77. </dependency>
  78. <!-- SpringBoot集成mybatis框架 -->
  79. <dependency>
  80. <groupId>org.mybatis.spring.boot</groupId>
  81. <artifactId>mybatis-spring-boot-starter</artifactId>
  82. <version>${mybatis-spring-boot-starter.version}</version>
  83. </dependency>
  84. <!-- pagehelper 分页插件 -->
  85. <dependency>
  86. <groupId>com.github.pagehelper</groupId>
  87. <artifactId>pagehelper-spring-boot-starter</artifactId>
  88. <version>1.2.3</version>
  89. </dependency>
  90. <!--阿里数据库连接池 -->
  91. <dependency>
  92. <groupId>com.alibaba</groupId>
  93. <artifactId>druid</artifactId>
  94. <version>${druid.version}</version>
  95. </dependency>
  96. <!--常用工具类 -->
  97. <dependency>
  98. <groupId>org.apache.commons</groupId>
  99. <artifactId>commons-lang3</artifactId>
  100. <version>${commons.lang3.version}</version>
  101. </dependency>
  102. <!--io常用工具类 -->
  103. <dependency>
  104. <groupId>commons-io</groupId>
  105. <artifactId>commons-io</artifactId>
  106. <version>2.5</version>
  107. </dependency>
  108. <!--Shiro核心框架 -->
  109. <dependency>
  110. <groupId>org.apache.shiro</groupId>
  111. <artifactId>shiro-core</artifactId>
  112. <version>${shiro.version}</version>
  113. </dependency>
  114. <!-- Shiro使用Srping框架 -->
  115. <dependency>
  116. <groupId>org.apache.shiro</groupId>
  117. <artifactId>shiro-spring</artifactId>
  118. <version>${shiro.version}</version>
  119. </dependency>
  120. <!-- Shiro使用EhCache缓存框架 -->
  121. <dependency>
  122. <groupId>org.apache.shiro</groupId>
  123. <artifactId>shiro-ehcache</artifactId>
  124. <version>${shiro.version}</version>
  125. </dependency>
  126. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  127. <dependency>
  128. <groupId>com.github.theborakompanioni</groupId>
  129. <artifactId>thymeleaf-extras-shiro</artifactId>
  130. <version>${thymeleaf-extras-shiro.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. <!-- 解析客户端操作系统、浏览器等 -->
  139. <dependency>
  140. <groupId>eu.bitwalker</groupId>
  141. <artifactId>UserAgentUtils</artifactId>
  142. <version>${bitwalker.version}</version>
  143. </dependency>
  144. <!--Spring框架基本的核心工具-->
  145. <dependency>
  146. <groupId>org.springframework</groupId>
  147. <artifactId>spring-context-support</artifactId>
  148. </dependency>
  149. <!-- 定时任务 -->
  150. <dependency>
  151. <groupId>org.quartz-scheduler</groupId>
  152. <artifactId>quartz</artifactId>
  153. <version>${quartz.version}</version>
  154. <exclusions>
  155. <exclusion>
  156. <groupId>com.mchange</groupId>
  157. <artifactId>c3p0</artifactId>
  158. </exclusion>
  159. </exclusions>
  160. </dependency>
  161. <!--velocity代码生成使用模板 -->
  162. <dependency>
  163. <groupId>org.apache.velocity</groupId>
  164. <artifactId>velocity</artifactId>
  165. <version>${velocity.version}</version>
  166. </dependency>
  167. </dependencies>
  168. <build>
  169. <finalName>${project.artifactId}</finalName>
  170. <plugins>
  171. <plugin>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-maven-plugin</artifactId>
  174. <configuration>
  175. <executable>true</executable>
  176. </configuration>
  177. </plugin>
  178. </plugins>
  179. </build>
  180. <repositories>
  181. <repository>
  182. <id>public</id>
  183. <name>aliyun nexus</name>
  184. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  185. <releases>
  186. <enabled>true</enabled>
  187. </releases>
  188. </repository>
  189. </repositories>
  190. <pluginRepositories>
  191. <pluginRepository>
  192. <id>public</id>
  193. <name>aliyun nexus</name>
  194. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  195. <releases>
  196. <enabled>true</enabled>
  197. </releases>
  198. <snapshots>
  199. <enabled>false</enabled>
  200. </snapshots>
  201. </pluginRepository>
  202. </pluginRepositories>
  203. </project>