pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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.2</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.2</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.1.1.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. <!-- SpringWeb模块 -->
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-web</artifactId>
  57. </dependency>
  58. <!-- SpringBoot集成mybatis框架 -->
  59. <dependency>
  60. <groupId>org.mybatis.spring.boot</groupId>
  61. <artifactId>mybatis-spring-boot-starter</artifactId>
  62. <version>${mybatis.boot.version}</version>
  63. </dependency>
  64. <!-- Mysql驱动包 -->
  65. <dependency>
  66. <groupId>mysql</groupId>
  67. <artifactId>mysql-connector-java</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>javax.servlet</groupId>
  71. <artifactId>javax.servlet-api</artifactId>
  72. </dependency>
  73. <!-- 日志工具类 -->
  74. <dependency>
  75. <groupId>org.slf4j</groupId>
  76. <artifactId>slf4j-api</artifactId>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <configuration>
  85. <source>${java.version}</source>
  86. <target>${java.version}</target>
  87. <encoding>${project.build.sourceEncoding}</encoding>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. <repositories>
  93. <repository>
  94. <id>public</id>
  95. <name>aliyun nexus</name>
  96. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  97. <releases>
  98. <enabled>true</enabled>
  99. </releases>
  100. </repository>
  101. </repositories>
  102. <pluginRepositories>
  103. <pluginRepository>
  104. <id>public</id>
  105. <name>aliyun nexus</name>
  106. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  107. <releases>
  108. <enabled>true</enabled>
  109. </releases>
  110. <snapshots>
  111. <enabled>false</enabled>
  112. </snapshots>
  113. </pluginRepository>
  114. </pluginRepositories>
  115. </project>