123456789101112131415161718192021222324 |
- <?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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.hosea.cloud.user</groupId>
- <artifactId>service-user</artifactId>
- <version>${revision}</version>
- </parent>
- <artifactId>service-user-client</artifactId>
- <name>Client ${version}</name>
- <description>
- Client层,定义DTO和业务请求接口
- 只引用基本的工具,不引用其它模块
- </description>
- <dependencies>
- <dependency>
- <groupId>com.hosea.cloud</groupId>
- <artifactId>cloud-webmvc</artifactId>
- </dependency>
- </dependencies>
- </project>
|