pom.xml 960 B

1234567891011121314151617181920212223242526272829303132333435
  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>ruoyi-vue-plus</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>4.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ruoyi-job</artifactId>
  13. <description>
  14. 任务调度
  15. </description>
  16. <dependencies>
  17. <!-- 通用工具-->
  18. <dependency>
  19. <groupId>com.ruoyi</groupId>
  20. <artifactId>ruoyi-common</artifactId>
  21. </dependency>
  22. <!-- xxl-job-core -->
  23. <dependency>
  24. <groupId>com.xuxueli</groupId>
  25. <artifactId>xxl-job-core</artifactId>
  26. </dependency>
  27. </dependencies>
  28. </project>