pom.xml 3.8 KB

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