pom.xml 6.2 KB

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