pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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>oh-my-scheduler</artifactId>
  7. <groupId>com.github.kfcfans</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>oh-my-scheduler-client</artifactId>
  12. <version>1.2.0</version>
  13. <packaging>jar</packaging>
  14. <properties>
  15. <oms.common.version>1.2.0</oms.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>oh-my-scheduler-common</artifactId>
  23. <version>${oms.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>