pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.aizuda</groupId>
  8. <artifactId>snail-job</artifactId>
  9. <version>${revision}</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>snail-job-client</artifactId>
  13. <name>snail-job-client</name>
  14. <description>snail-job-client</description>
  15. <modules>
  16. <module>snail-job-client-common</module>
  17. <module>snail-job-client-job-core</module>
  18. <module>snail-job-client-retry-core</module>
  19. </modules>
  20. <packaging>pom</packaging>
  21. <dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.aizuda</groupId>
  25. <artifactId>snail-job-client-common</artifactId>
  26. <version>${revision}</version>
  27. </dependency>
  28. </dependencies>
  29. </dependencyManagement>
  30. </project>