pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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.0</version>
  9. <name>ruoyi</name>
  10. <url>http://www.ruoyi.vip</url>
  11. <description>若依管理系统</description>
  12. <properties>
  13. <ruoyi.version>3.0</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. </properties>
  25. <dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-dependencies</artifactId>
  30. <version>2.0.5.RELEASE</version>
  31. <type>pom</type>
  32. <scope>import</scope>
  33. </dependency>
  34. </dependencies>
  35. </dependencyManagement>
  36. <modules>
  37. <module>ruoyi-admin</module>
  38. <module>ruoyi-framework</module>
  39. <module>ruoyi-system</module>
  40. <module>ruoyi-quartz</module>
  41. <module>ruoyi-generator</module>
  42. <module>ruoyi-common</module>
  43. </modules>
  44. <packaging>pom</packaging>
  45. <dependencies>
  46. <!--Spring框架基本的核心工具-->
  47. <dependency>
  48. <groupId>org.springframework</groupId>
  49. <artifactId>spring-context-support</artifactId>
  50. </dependency>
  51. <!-- SpringBoot集成mybatis框架 -->
  52. <dependency>
  53. <groupId>org.mybatis.spring.boot</groupId>
  54. <artifactId>mybatis-spring-boot-starter</artifactId>
  55. <version>${mybatis.boot.version}</version>
  56. </dependency>
  57. <!-- Mysql驱动包 -->
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>javax.servlet</groupId>
  64. <artifactId>javax.servlet-api</artifactId>
  65. </dependency>
  66. <!-- 日志工具类 -->
  67. <dependency>
  68. <groupId>org.slf4j</groupId>
  69. <artifactId>slf4j-api</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-compiler-plugin</artifactId>
  77. <configuration>
  78. <source>${java.version}</source>
  79. <target>${java.version}</target>
  80. <encoding>${project.build.sourceEncoding}</encoding>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. <repositories>
  86. <repository>
  87. <id>public</id>
  88. <name>aliyun nexus</name>
  89. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  90. <releases>
  91. <enabled>true</enabled>
  92. </releases>
  93. </repository>
  94. </repositories>
  95. <pluginRepositories>
  96. <pluginRepository>
  97. <id>public</id>
  98. <name>aliyun nexus</name>
  99. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  100. <releases>
  101. <enabled>true</enabled>
  102. </releases>
  103. <snapshots>
  104. <enabled>false</enabled>
  105. </snapshots>
  106. </pluginRepository>
  107. </pluginRepositories>
  108. </project>