pom.xml 1.8 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. <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. <groupId>cn.com.ctop</groupId>
  12. <artifactId>xxl-job-core</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>A distributed task scheduling framework.</description>
  15. <url>https://www.xuxueli.com/</url>
  16. <properties>
  17. <xxl-rpc.version>1.5.0</xxl-rpc.version>
  18. <spring.version>5.2.3.RELEASE</spring.version>
  19. <groovy.version>2.5.9</groovy.version>
  20. </properties>
  21. <dependencies>
  22. <!-- xxl-rpc-core -->
  23. <dependency>
  24. <groupId>com.xuxueli</groupId>
  25. <artifactId>xxl-rpc-core</artifactId>
  26. <version>${xxl-rpc.version}</version>
  27. </dependency>
  28. <!-- groovy-all -->
  29. <dependency>
  30. <groupId>org.codehaus.groovy</groupId>
  31. <artifactId>groovy</artifactId>
  32. <version>3.0.2</version>
  33. </dependency>
  34. <!-- spring-context -->
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-context</artifactId>
  38. <version>${spring.version}</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <!-- junit -->
  42. <dependency>
  43. <groupId>junit</groupId>
  44. <artifactId>junit</artifactId>
  45. <version>4.11</version>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>