pom.xml 1.2 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. <artifactId>powerjob</artifactId>
  7. <groupId>com.github.kfcfans</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>powerjob-client</artifactId>
  12. <version>3.0.1</version>
  13. <packaging>jar</packaging>
  14. <properties>
  15. <powerjob.common.version>3.0.1</powerjob.common.version>
  16. <junit.version>5.6.1</junit.version>
  17. </properties>
  18. <dependencies>
  19. <!-- oms-common -->
  20. <dependency>
  21. <groupId>com.github.kfcfans</groupId>
  22. <artifactId>powerjob-common</artifactId>
  23. <version>${powerjob.common.version}</version>
  24. </dependency>
  25. <!-- Junit 测试 -->
  26. <dependency>
  27. <groupId>org.junit.jupiter</groupId>
  28. <artifactId>junit-jupiter-api</artifactId>
  29. <version>${junit.version}</version>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. </project>