pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <groupId>com.xuxueli</groupId>
  6. <artifactId>xxl-job</artifactId>
  7. <version>2.2.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>xxl-job-core</artifactId>
  10. <packaging>jar</packaging>
  11. <name>${project.artifactId}</name>
  12. <description>A distributed task scheduling framework.</description>
  13. <url>https://www.xuxueli.com/</url>
  14. <dependencies>
  15. <!-- xxl-rpc-core -->
  16. <dependency>
  17. <groupId>com.xuxueli</groupId>
  18. <artifactId>xxl-rpc-core</artifactId>
  19. <version>${xxl-rpc.version}</version>
  20. </dependency>
  21. <!-- groovy-all -->
  22. <dependency>
  23. <groupId>org.codehaus.groovy</groupId>
  24. <artifactId>groovy</artifactId>
  25. <version>${groovy.version}</version>
  26. </dependency>
  27. <!-- spring-context -->
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-context</artifactId>
  31. <version>${spring.version}</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <!-- junit -->
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. <version>${junit.version}</version>
  39. <scope>test</scope>
  40. </dependency>
  41. </dependencies>
  42. </project>