|
|
1 | <?xml version="1.0"?>
|
1 | <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"> |
2 | <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">
|
2 | <modelVersion>4.0.0</modelVersion> |
3 | <modelVersion>4.0.0</modelVersion>
|
3 | |
4 |
|
4 | <parent> |
5 | <parent>
|
5 | <groupId>org.onehippo.ecm</groupId> |
|
|
6 | <artifactId>hst_docs</artifactId> |
|
|
7 | <version>1.01.02-SNAPSHOT</version> |
|
|
8 | <relativePath>..</relativePath> |
|
|
9 | </parent> |
|
|
10 | |
|
|
11 | <name>hst_docs package ECM package</name> |
|
|
12 | <description>hst_docs package ECM package</description> |
|
|
13 | <groupId>org.onehippo.ecm</groupId> |
6 | <groupId>org.onehippo.ecm</groupId>
|
|
|
7 | <artifactId>docsite</artifactId>
|
|
|
8 | <version>1.01.28</version>
|
|
|
9 | <relativePath>../../pom.xml</relativePath>
|
|
|
10 | </parent>
|
|
|
11 |
|
|
|
12 | <name>docsite package ECM package</name>
|
|
|
13 | <description>docsite package ECM package</description>
|
|
|
14 | <groupId>org.onehippo.ecm</groupId>
|
14 | <artifactId>hst_docs-tomcat-cms</artifactId> |
15 | <artifactId>docsite-tomcat-cms</artifactId>
|
15 | <packaging>war</packaging> |
16 | <packaging>war</packaging>
|
16 | |
17 |
|
17 | <dependencies> |
18 | <dependencies>
|
18 | <dependency> |
19 | <dependency>
|
19 | <groupId>org.onehippo.ecm</groupId> |
20 | <groupId>org.onehippo.ecm</groupId>
|
20 | <artifactId>hst_docs-cms</artifactId> |
21 | <artifactId>docsite-cms</artifactId>
|
21 | <version>1.01.02-SNAPSHOT</version> |
22 | <version>${pom.version}</version>
|
22 | <type>war</type> |
23 | <type>war</type>
|
23 | </dependency> |
24 | </dependency>
|
24 | </dependencies> |
25 | </dependencies>
|
25 | |
26 |
|
26 | <build> |
27 | <build>
|
27 | <defaultGoal>package</defaultGoal> |
28 | <defaultGoal>package</defaultGoal>
|
|
|
29 | <plugins>
|
28 | <plugins> |
30 | <plugin>
|
29 | <plugin> |
|
|
30 | <groupId>org.apache.maven.plugins</groupId> |
31 | <groupId>org.apache.maven.plugins</groupId>
|
31 | <artifactId>maven-war-plugin</artifactId> |
32 | <artifactId>maven-war-plugin</artifactId>
|
32 | <version>2.1-beta-1</version> |
33 | <version>2.1-beta-1</version>
|
33 | <configuration> |
|
|
34 | <manifest> |
|
|
35 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
|
|
36 | </manifest> |
|
|
37 | <archive> |
|
|
38 | <manifestEntries> |
|
|
39 | <Implementation-Build>${buildNumber}</Implementation-Build> |
|
|
40 | </manifestEntries> |
|
|
41 | </archive> |
|
|
42 | <overlays> |
|
|
43 | <overlay> |
|
|
44 | <groupId>org.onehippo.ecm</groupId> |
|
|
45 | <artifactId>hst_docs-cms</artifactId> |
|
|
46 | </overlay> |
|
|
47 | </overlays> |
|
|
48 | </configuration> |
|
|
49 | </plugin> |
|
|
50 | </plugins> |
34 | </plugin>
|
|
|
35 | </plugins>
|
51 | </build> |
36 | </build>
|
|
|
37 |
|
52 | </project> |
38 | </project>
|