pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. <parent>
  6. <artifactId>jeeplus-modules</artifactId>
  7. <groupId>org.jeeplus</groupId>
  8. <version>9.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeeplus-xxl-job-admin</artifactId>
  12. <dependencies>
  13. <!-- starter-web:spring-webmvc + autoconfigure + logback + yaml + tomcat -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <!-- starter-test:junit + spring-test + mockito -->
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-test</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <!-- freemarker-starter -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-freemarker</artifactId>
  28. </dependency>
  29. <!-- mail-starter -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-mail</artifactId>
  33. </dependency>
  34. <!-- starter-actuator -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-actuator</artifactId>
  38. </dependency>
  39. <!-- mybatis-starter:mybatis + mybatis-spring + hikari(default) -->
  40. <dependency>
  41. <groupId>org.mybatis.spring.boot</groupId>
  42. <artifactId>mybatis-spring-boot-starter</artifactId>
  43. <version>${mybatis-spring-boot-starter.version}</version>
  44. </dependency>
  45. <!-- mysql -->
  46. <dependency>
  47. <groupId>mysql</groupId>
  48. <artifactId>mysql-connector-java</artifactId>
  49. <version>${mysql-connector-java.version}</version>
  50. </dependency>
  51. <!-- xxl-job-core -->
  52. <dependency>
  53. <groupId>com.xuxueli</groupId>
  54. <artifactId>xxl-job-core</artifactId>
  55. <version>${xxl-job-core.version}</version>
  56. </dependency>
  57. <!-- SpringCloud Alibaba Nacos -->
  58. <dependency>
  59. <groupId>com.alibaba.cloud</groupId>
  60. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  61. </dependency>
  62. <!-- SpringCloud Alibaba Nacos Config -->
  63. <dependency>
  64. <groupId>com.alibaba.cloud</groupId>
  65. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  66. </dependency>
  67. <!-- SpringCloud Alibaba Sentinel -->
  68. <dependency>
  69. <groupId>com.alibaba.cloud</groupId>
  70. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  71. </dependency>
  72. <!--添加actuator依赖-->
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-actuator</artifactId>
  76. </dependency>
  77. <!--spring boot admin依赖-->
  78. <dependency>
  79. <groupId>de.codecentric</groupId>
  80. <artifactId>spring-boot-admin-starter-client</artifactId>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <finalName>jeeplus-xxl-job-admin</finalName>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <version>2.1.2.RELEASE</version>
  90. <executions>
  91. <execution>
  92. <goals>
  93. <goal>repackage</goal>
  94. </goals>
  95. </execution>
  96. </executions>
  97. <configuration>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>