pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <parent>
  7. <groupId>com.xuxueli</groupId>
  8. <artifactId>xxl-job-executor-samples</artifactId>
  9. <version>2.4.0</version>
  10. </parent>
  11. <artifactId>xxl-job-executor-sample-frameless</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>Example executor project for spring boot.</description>
  15. <url>https://www.xuxueli.com/</url>
  16. <dependencies>
  17. <!-- slf4j -->
  18. <dependency>
  19. <groupId>org.slf4j</groupId>
  20. <artifactId>slf4j-log4j12</artifactId>
  21. <version>${slf4j-api.version}</version>
  22. </dependency>
  23. <!-- junit -->
  24. <dependency>
  25. <groupId>org.junit.jupiter</groupId>
  26. <artifactId>junit-jupiter-engine</artifactId>
  27. <version>${junit-jupiter.version}</version>
  28. <scope>test</scope>
  29. </dependency>
  30. <!-- xxl-job-core -->
  31. <dependency>
  32. <groupId>com.xuxueli</groupId>
  33. <artifactId>xxl-job-core</artifactId>
  34. <version>${project.parent.version}</version>
  35. </dependency>
  36. </dependencies>
  37. </project>