pom.xml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.vap</groupId>
  8. <artifactId>vb-modules</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>vb-job</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>定时任务模块</description>
  14. <dependencies>
  15. <!-- 通用工具-->
  16. <dependency>
  17. <groupId>com.vap</groupId>
  18. <artifactId>vb-common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.vap</groupId>
  22. <artifactId>vb-common-job</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.vap</groupId>
  26. <artifactId>vb-breeding</artifactId>
  27. </dependency>
  28. </dependencies>
  29. </project>