pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>ruoyi-extend</artifactId>
  6. <groupId>org.dromara</groupId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>ruoyi-xxl-job-admin</artifactId>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <spring-boot.version>2.7.12</spring-boot.version>
  13. <spring-boot-admin.version>2.7.10</spring-boot-admin.version>
  14. <mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version>
  15. </properties>
  16. <dependencyManagement>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-parent</artifactId>
  21. <version>${spring-boot.version}</version>
  22. <type>pom</type>
  23. <scope>import</scope>
  24. </dependency>
  25. </dependencies>
  26. </dependencyManagement>
  27. <dependencies>
  28. <!-- starter-web:spring-webmvc + autoconfigure + logback + yaml + tomcat -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <!-- starter-test:junit + spring-test + mockito -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <!-- freemarker-starter -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-freemarker</artifactId>
  43. </dependency>
  44. <!-- mail-starter -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-mail</artifactId>
  48. </dependency>
  49. <!-- starter-actuator -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-actuator</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-aop</artifactId>
  57. </dependency>
  58. <!-- mybatis-starter:mybatis + mybatis-spring + hikari(default) -->
  59. <dependency>
  60. <groupId>org.mybatis.spring.boot</groupId>
  61. <artifactId>mybatis-spring-boot-starter</artifactId>
  62. <version>${mybatis-spring-boot.version}</version>
  63. </dependency>
  64. <!-- mysql -->
  65. <dependency>
  66. <groupId>com.mysql</groupId>
  67. <artifactId>mysql-connector-j</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>de.codecentric</groupId>
  71. <artifactId>spring-boot-admin-starter-client</artifactId>
  72. <version>${spring-boot-admin.version}</version>
  73. </dependency>
  74. <!-- xxl-job-core -->
  75. <dependency>
  76. <groupId>com.xuxueli</groupId>
  77. <artifactId>xxl-job-core</artifactId>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <finalName>${project.artifactId}</finalName>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. <version>${spring-boot.version}</version>
  87. <executions>
  88. <execution>
  89. <goals>
  90. <goal>repackage</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>