pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.0.2</version>
  8. </parent>
  9. <artifactId>xxl-job-core</artifactId>
  10. <packaging>jar</packaging>
  11. <name>${project.artifactId}</name>
  12. <description>A lightweight distributed task scheduling framework.</description>
  13. <url>http://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. <!-- commons-exec -->
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-exec</artifactId>
  31. <version>${commons-exec.version}</version>
  32. </dependency>
  33. <!-- spring-context -->
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-context</artifactId>
  37. <version>${spring.version}</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. </dependencies>
  41. </project>