46 lines
1.4 KiB
XML
46 lines
1.4 KiB
XML
|
<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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.zheng</groupId>
|
||
|
<artifactId>zheng-cms</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>zheng-cms-rpc-api</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>zheng-cms-rpc-api</name>
|
||
|
<url>http://www.zhangshuzheng.cn</url>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.zheng</groupId>
|
||
|
<artifactId>zheng-cms-dao</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
<type>jar</type>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>zheng-cms-rpc-api</finalName>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/java</directory>
|
||
|
<includes>
|
||
|
<include>**/*.xml</include>
|
||
|
</includes>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
</build>
|
||
|
</project>
|