47 lines
1.5 KiB
XML
47 lines
1.5 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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<artifactId>cms</artifactId>
|
|
<groupId>com.zheng</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>cms-web</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<name>cms-web Maven Webapp</name>
|
|
<url>http://www.zhangshuzheng.cn</url>
|
|
|
|
<dependencies>
|
|
<!-- 测试 -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!-- servlet -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jstl</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<!-- service -->
|
|
<dependency>
|
|
<groupId>com.zheng</groupId>
|
|
<artifactId>cms-service</artifactId>
|
|
<version>1.0.0</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>cms-web</finalName>
|
|
</build>
|
|
</project>
|