pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <groupId>com.xuxueli</groupId>
  7. <artifactId>xxl-job-executor-samples</artifactId>
  8. <version>2.2.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>xxl-job-executor-sample-jboot</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <!-- jboot -->
  19. <dependency>
  20. <groupId>io.jboot</groupId>
  21. <artifactId>jboot</artifactId>
  22. <version>2.0.9</version>
  23. </dependency>
  24. <!-- xxl-job-core -->
  25. <dependency>
  26. <groupId>com.xuxueli</groupId>
  27. <artifactId>xxl-job-core</artifactId>
  28. <version>${project.parent.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <version>4.11</version>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>ch.qos.logback</groupId>
  38. <artifactId>logback-core</artifactId>
  39. <version>1.1.11</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>ch.qos.logback</groupId>
  43. <artifactId>logback-classic</artifactId>
  44. <version>1.1.11</version>
  45. </dependency>
  46. </dependencies>
  47. </project>