pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.ruoyi</groupId>
  7. <artifactId>ruoyi</artifactId>
  8. <version>3.1</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.1</ruoyi.version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <shiro.version>1.4.0</shiro.version>
  18. <thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
  19. <mybatis.boot.version>1.3.2</mybatis.boot.version>
  20. <druid.version>1.1.10</druid.version>
  21. <bitwalker.version>1.19</bitwalker.version>
  22. <kaptcha.version>2.3.2</kaptcha.version>
  23. <swagger.version>2.7.0</swagger.version>
  24. <pagehelper.boot.version>1.2.5</pagehelper.boot.version>
  25. <oshi.version>3.9.1</oshi.version>
  26. </properties>
  27. <dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-dependencies</artifactId>
  32. <version>2.0.5.RELEASE</version>
  33. <type>pom</type>
  34. <scope>import</scope>
  35. </dependency>
  36. </dependencies>
  37. </dependencyManagement>
  38. <modules>
  39. <module>ruoyi-admin</module>
  40. <module>ruoyi-framework</module>
  41. <module>ruoyi-system</module>
  42. <module>ruoyi-quartz</module>
  43. <module>ruoyi-generator</module>
  44. <module>ruoyi-common</module>
  45. </modules>
  46. <packaging>pom</packaging>
  47. <dependencies>
  48. <!--Spring框架基本的核心工具-->
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-context-support</artifactId>
  52. </dependency>
  53. <!-- SpringBoot集成mybatis框架 -->
  54. <dependency>
  55. <groupId>org.mybatis.spring.boot</groupId>
  56. <artifactId>mybatis-spring-boot-starter</artifactId>
  57. <version>${mybatis.boot.version}</version>
  58. </dependency>
  59. <!-- Mysql驱动包 -->
  60. <dependency>
  61. <groupId>mysql</groupId>
  62. <artifactId>mysql-connector-java</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>javax.servlet</groupId>
  66. <artifactId>javax.servlet-api</artifactId>
  67. </dependency>
  68. <!-- 日志工具类 -->
  69. <dependency>
  70. <groupId>org.slf4j</groupId>
  71. <artifactId>slf4j-api</artifactId>
  72. </dependency>
  73. </dependencies>
  74. <build>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <configuration>
  80. <source>${java.version}</source>
  81. <target>${java.version}</target>
  82. <encoding>${project.build.sourceEncoding}</encoding>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. <repositories>
  88. <repository>
  89. <id>public</id>
  90. <name>aliyun nexus</name>
  91. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  92. <releases>
  93. <enabled>true</enabled>
  94. </releases>
  95. </repository>
  96. </repositories>
  97. <pluginRepositories>
  98. <pluginRepository>
  99. <id>public</id>
  100. <name>aliyun nexus</name>
  101. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  102. <releases>
  103. <enabled>true</enabled>
  104. </releases>
  105. <snapshots>
  106. <enabled>false</enabled>
  107. </snapshots>
  108. </pluginRepository>
  109. </pluginRepositories>
  110. </project>