pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>org.dromara</groupId>
  7. <artifactId>ruoyi-modules</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. </properties>
  16. <artifactId>ruoyi-job</artifactId>
  17. <description>
  18. 任务调度
  19. </description>
  20. <dependencies>
  21. <!-- 通用工具-->
  22. <dependency>
  23. <groupId>org.dromara</groupId>
  24. <artifactId>ruoyi-common-json</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.dromara</groupId>
  28. <artifactId>ruoyi-common-job</artifactId>
  29. </dependency>
  30. </dependencies>
  31. </project>