pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  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.2</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. <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. <!--
  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. <!-- SpringBoot集成thymeleaf模板 -->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  69. </dependency>
  70. <!-- thymeleaf网页解析 -->
  71. <dependency>
  72. <groupId>net.sourceforge.nekohtml</groupId>
  73. <artifactId>nekohtml</artifactId>
  74. </dependency>
  75. <!-- Mysql驱动包 -->
  76. <dependency>
  77. <groupId>mysql</groupId>
  78. <artifactId>mysql-connector-java</artifactId>
  79. </dependency>
  80. <!-- SpringBoot集成mybatis框架 -->
  81. <dependency>
  82. <groupId>org.mybatis.spring.boot</groupId>
  83. <artifactId>mybatis-spring-boot-starter</artifactId>
  84. <version>${mybatis-spring-boot-starter.version}</version>
  85. </dependency>
  86. <!-- pagehelper 分页插件 -->
  87. <dependency>
  88. <groupId>com.github.pagehelper</groupId>
  89. <artifactId>pagehelper-spring-boot-starter</artifactId>
  90. <version>1.2.3</version>
  91. </dependency>
  92. <!--阿里数据库连接池 -->
  93. <dependency>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>druid</artifactId>
  96. <version>${druid.version}</version>
  97. </dependency>
  98. <!--常用工具类 -->
  99. <dependency>
  100. <groupId>org.apache.commons</groupId>
  101. <artifactId>commons-lang3</artifactId>
  102. <version>${commons.lang3.version}</version>
  103. </dependency>
  104. <!--io常用工具类 -->
  105. <dependency>
  106. <groupId>commons-io</groupId>
  107. <artifactId>commons-io</artifactId>
  108. <version>2.5</version>
  109. </dependency>
  110. <!--Shiro核心框架 -->
  111. <dependency>
  112. <groupId>org.apache.shiro</groupId>
  113. <artifactId>shiro-core</artifactId>
  114. <version>${shiro.version}</version>
  115. </dependency>
  116. <!-- Shiro使用Srping框架 -->
  117. <dependency>
  118. <groupId>org.apache.shiro</groupId>
  119. <artifactId>shiro-spring</artifactId>
  120. <version>${shiro.version}</version>
  121. </dependency>
  122. <!-- Shiro使用EhCache缓存框架 -->
  123. <dependency>
  124. <groupId>org.apache.shiro</groupId>
  125. <artifactId>shiro-ehcache</artifactId>
  126. <version>${shiro.version}</version>
  127. </dependency>
  128. <!-- thymeleaf模板引擎和shiro框架的整合 -->
  129. <dependency>
  130. <groupId>com.github.theborakompanioni</groupId>
  131. <artifactId>thymeleaf-extras-shiro</artifactId>
  132. <version>${thymeleaf-extras-shiro.version}</version>
  133. </dependency>
  134. <!-- 阿里JSON解析器 -->
  135. <dependency>
  136. <groupId>com.alibaba</groupId>
  137. <artifactId>fastjson</artifactId>
  138. <version>${fastjson.version}</version>
  139. </dependency>
  140. <!-- 解析客户端操作系统、浏览器等 -->
  141. <dependency>
  142. <groupId>eu.bitwalker</groupId>
  143. <artifactId>UserAgentUtils</artifactId>
  144. <version>${bitwalker.version}</version>
  145. </dependency>
  146. <!--Spring框架基本的核心工具-->
  147. <dependency>
  148. <groupId>org.springframework</groupId>
  149. <artifactId>spring-context-support</artifactId>
  150. </dependency>
  151. <!-- 定时任务 -->
  152. <dependency>
  153. <groupId>org.quartz-scheduler</groupId>
  154. <artifactId>quartz</artifactId>
  155. <version>${quartz.version}</version>
  156. <exclusions>
  157. <exclusion>
  158. <groupId>com.mchange</groupId>
  159. <artifactId>c3p0</artifactId>
  160. </exclusion>
  161. </exclusions>
  162. </dependency>
  163. <!--velocity代码生成使用模板 -->
  164. <dependency>
  165. <groupId>org.apache.velocity</groupId>
  166. <artifactId>velocity</artifactId>
  167. <version>${velocity.version}</version>
  168. </dependency>
  169. </dependencies>
  170. <build>
  171. <finalName>${project.artifactId}</finalName>
  172. <plugins>
  173. <plugin>
  174. <groupId>org.springframework.boot</groupId>
  175. <artifactId>spring-boot-maven-plugin</artifactId>
  176. <configuration>
  177. <executable>true</executable>
  178. </configuration>
  179. </plugin>
  180. </plugins>
  181. </build>
  182. <repositories>
  183. <repository>
  184. <id>public</id>
  185. <name>aliyun nexus</name>
  186. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  187. <releases>
  188. <enabled>true</enabled>
  189. </releases>
  190. </repository>
  191. </repositories>
  192. <pluginRepositories>
  193. <pluginRepository>
  194. <id>public</id>
  195. <name>aliyun nexus</name>
  196. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  197. <releases>
  198. <enabled>true</enabled>
  199. </releases>
  200. <snapshots>
  201. <enabled>false</enabled>
  202. </snapshots>
  203. </pluginRepository>
  204. </pluginRepositories>
  205. </project>