pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.0.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>xxl-job-core</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>A distributed task scheduling framework.</description>
  14. <url>https://www.xuxueli.com/</url>
  15. <properties>
  16. <xxl-rpc.version>1.5.0</xxl-rpc.version>
  17. <spring.version>5.2.3.RELEASE</spring.version>
  18. <groovy.version>2.5.9</groovy.version>
  19. </properties>
  20. <dependencies>
  21. <!-- xxl-rpc-core -->
  22. <dependency>
  23. <groupId>com.xuxueli</groupId>
  24. <artifactId>xxl-rpc-core</artifactId>
  25. <version>${xxl-rpc.version}</version>
  26. </dependency>
  27. <!-- groovy-all -->
  28. <dependency>
  29. <groupId>org.codehaus.groovy</groupId>
  30. <artifactId>groovy</artifactId>
  31. <version>3.0.2</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. <!-- junit -->
  41. <dependency>
  42. <groupId>junit</groupId>
  43. <artifactId>junit</artifactId>
  44. <version>4.11</version>
  45. <scope>test</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>