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>
- <groupId>com.yc.ship</groupId>
- <artifactId>ship-module-trade</artifactId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>ship-module-trade-api</artifactId>
- <packaging>jar</packaging>
- <name>${project.artifactId}</name>
- <description>
- ship 模块 API,暴露给其它模块调用
- </description>
- <dependencies>
- <!-- 参数校验 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.yc.ship</groupId>
- <artifactId>common</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.swagger.core.v3</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>2.2.20</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|