pom.xml 3.9 KB

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