|
|
@@ -2,13 +2,9 @@
|
|
|
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</artifactId>
|
|
|
- <version>1.0.0</version>
|
|
|
- </parent>
|
|
|
-
|
|
|
+ <groupId>com.zheng</groupId>
|
|
|
<artifactId>zheng-cms</artifactId>
|
|
|
+ <version>1.0.0</version>
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
<name>zheng-cms</name>
|
|
|
@@ -23,4 +19,49 @@
|
|
|
<module>cms-service</module>
|
|
|
<module>cms-web</module>
|
|
|
</modules>
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zheng</groupId>
|
|
|
+ <artifactId>zheng-common</artifactId>
|
|
|
+ <version>1.0.0</version>
|
|
|
+ <type>jar</type>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zheng</groupId>
|
|
|
+ <artifactId>zheng-cms-dao</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.zheng</groupId>
|
|
|
+ <artifactId>zheng-cms-service</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ <type>jar</type>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mortbay.jetty</groupId>
|
|
|
+ <artifactId>jetty-maven-plugin</artifactId>
|
|
|
+ <version>8.1.16.v20140903</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>4.12</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <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>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
</project>
|