1 |
<?xml version="1.0" encoding="UTF-8"?> |
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"> |
3 |
<modelVersion>4.0.0</modelVersion> |
4 |
|
5 |
<parent> |
6 |
<groupId>org.onehippo.ecm</groupId> |
7 |
<artifactId>hst_docs</artifactId> |
8 |
<version>1.01.09-SNAPSHOT</version> |
9 |
<relativePath>../pom.xml</relativePath> |
10 |
</parent> |
11 |
|
12 |
<name>hst_docs package Site package</name> |
13 |
<description>hst_docs package Site package</description> |
14 |
<groupId>org.onehippo.ecm</groupId> |
15 |
<artifactId>hst_docs-tomcat-site</artifactId> |
16 |
<packaging>war</packaging> |
17 |
|
18 |
<dependencies> |
19 |
<dependency> |
20 |
<groupId>org.onehippo.ecm</groupId> |
21 |
<artifactId>hst_docs-site</artifactId> |
22 |
<version>1.01.09-SNAPSHOT</version> |
23 |
<type>war</type> |
24 |
</dependency> |
25 |
<dependency> |
26 |
<groupId>org.hippoecm</groupId> |
27 |
<artifactId>hippo-ecm-repository-application</artifactId> |
28 |
<type>war</type> |
29 |
</dependency> |
30 |
</dependencies> |
31 |
|
32 |
<build> |
33 |
<defaultGoal>package</defaultGoal> |
34 |
<plugins> |
35 |
<plugin> |
36 |
<groupId>org.apache.maven.plugins</groupId> |
37 |
<artifactId>maven-war-plugin</artifactId> |
38 |
<version>2.1-beta-1</version> |
39 |
<configuration> |
40 |
<overlays> |
41 |
<overlay> |
42 |
<groupId>org.hippoecm</groupId> |
43 |
<artifactId>hippo-ecm-repository-application</artifactId> |
44 |
<excludes> |
45 |
<exclude>WEB-INF/lib/commons-logging*.jar</exclude> |
46 |
<exclude>WEB-INF/lib/commons-lang*.jar</exclude> |
47 |
<exclude>WEB-INF/lib/commons-collections*.jar</exclude> |
48 |
<exclude>WEB-INF/lib/*slf4j*.jar</exclude> |
49 |
<exclude>WEB-INF/lib/log4j*.jar</exclude> |
50 |
</excludes> |
51 |
</overlay> |
52 |
<overlay> |
53 |
<groupId>org.onehippo.ecm</groupId> |
54 |
<artifactId>hst_docs-site</artifactId> |
55 |
<excludes> |
56 |
<exclude>WEB-INF/log4j.*</exclude> |
57 |
<exclude>WEB-INF/jetty.*</exclude> |
58 |
</excludes> |
59 |
</overlay> |
60 |
</overlays> |
61 |
</configuration> |
62 |
</plugin> |
63 |
</plugins> |
64 |
</build> |
65 |
|
66 |
</project> |
67 |
|