| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>zd</artifactId>
- <groupId>com.zd</groupId>
- <version>3.1.0</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>zd-algorithm-api</artifactId>
- <description>
- zd-algorithm-api 算法接口模块
- </description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- zd Common Core-->
- <dependency>
- <groupId>com.zd</groupId>
- <artifactId>zd-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zd.base</groupId>
- <artifactId>zd-base-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zd</groupId>
- <artifactId>zd-common-swagger</artifactId>
- </dependency>
- </dependencies>
- </project>
|