pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>com.ruoyi</groupId>
  7. <version>4.8.2</version>
  8. </parent>
  9. <artifactId>ruoyi-xxl-job-admin</artifactId>
  10. <packaging>jar</packaging>
  11. <properties>
  12. </properties>
  13. <dependencyManagement>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-parent</artifactId>
  18. <version>${spring-boot.version}</version>
  19. <type>pom</type>
  20. <scope>import</scope>
  21. </dependency>
  22. </dependencies>
  23. </dependencyManagement>
  24. <dependencies>
  25. <!-- starter-web:spring-webmvc + autoconfigure + logback + yaml + tomcat -->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <!-- starter-test:junit + spring-test + mockito -->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <!-- freemarker-starter -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-freemarker</artifactId>
  40. </dependency>
  41. <!-- mail-starter -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-mail</artifactId>
  45. </dependency>
  46. <!-- starter-actuator -->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-actuator</artifactId>
  50. </dependency>
  51. <!-- mybatis-starter:mybatis + mybatis-spring + hikari(default) -->
  52. <dependency>
  53. <groupId>org.mybatis.spring.boot</groupId>
  54. <artifactId>mybatis-spring-boot-starter</artifactId>
  55. <version>${spring-boot.mybatis}</version>
  56. </dependency>
  57. <!-- mysql -->
  58. <dependency>
  59. <groupId>com.mysql</groupId>
  60. <artifactId>mysql-connector-j</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>de.codecentric</groupId>
  64. <artifactId>spring-boot-admin-starter-client</artifactId>
  65. </dependency>
  66. <!-- xxl-job-core -->
  67. <dependency>
  68. <groupId>com.xuxueli</groupId>
  69. <artifactId>xxl-job-core</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <finalName>${project.artifactId}</finalName>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. <version>${spring-boot.version}</version>
  79. <executions>
  80. <execution>
  81. <goals>
  82. <goal>repackage</goal>
  83. </goals>
  84. </execution>
  85. </executions>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>