pom.xml 1020 B

123456789101112131415161718192021222324252627282930313233343536
  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. <groupId>com.ruoyi</groupId>
  7. <artifactId>ruoyi-modules</artifactId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <packaging>jar</packaging>
  13. <artifactId>ruoyi-job</artifactId>
  14. <description>
  15. 任务调度
  16. </description>
  17. <dependencies>
  18. <!-- 通用工具-->
  19. <dependency>
  20. <groupId>com.ruoyi</groupId>
  21. <artifactId>ruoyi-common-core</artifactId>
  22. </dependency>
  23. <!-- 调度模块 -->
  24. <dependency>
  25. <groupId>com.ruoyi</groupId>
  26. <artifactId>ruoyi-common-job</artifactId>
  27. </dependency>
  28. </dependencies>
  29. </project>