pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>zd</artifactId>
  7. <groupId>com.zd</groupId>
  8. <version>3.1.0</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>zd-algorithm-api</artifactId>
  13. <description>
  14. zd-algorithm-api 算法接口模块
  15. </description>
  16. <properties>
  17. <maven.compiler.source>8</maven.compiler.source>
  18. <maven.compiler.target>8</maven.compiler.target>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21. <dependencies>
  22. <!-- zd Common Core-->
  23. <dependency>
  24. <groupId>com.zd</groupId>
  25. <artifactId>zd-common-core</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.zd.base</groupId>
  29. <artifactId>zd-base-api</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.zd</groupId>
  33. <artifactId>zd-common-swagger</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>