1 |
bvdschans |
20304 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
rbijlsma |
17402 |
<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 |
bvdschans |
20304 |
<modelVersion>4.0.0</modelVersion> |
4 |
|
|
|
5 |
|
|
<parent> |
6 |
rbijlsma |
17369 |
<groupId>org.onehippo.ecm</groupId> |
7 |
bvdschans |
20304 |
<artifactId>hst_docs</artifactId> |
8 |
rbijlsma |
20566 |
<version>1.01.10-SNAPSHOT</version> |
9 |
bvdschans |
20304 |
<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 |
rbijlsma |
20566 |
<version>1.01.10-SNAPSHOT</version> |
23 |
bvdschans |
20304 |
<type>war</type> |
24 |
|
|
</dependency> |
25 |
bvdschans |
20305 |
<dependency> |
26 |
|
|
<groupId>org.hippoecm</groupId> |
27 |
|
|
<artifactId>hippo-ecm-repository-application</artifactId> |
28 |
|
|
<type>war</type> |
29 |
|
|
</dependency> |
30 |
bvdschans |
20599 |
<!-- AuthFilter --> |
31 |
|
|
<dependency> |
32 |
|
|
<groupId>org.onehippo.forge.authfilter</groupId> |
33 |
|
|
<artifactId>authfilter-filter</artifactId> |
34 |
|
|
<version>1.01.02</version> |
35 |
|
|
<type>jar</type> |
36 |
|
|
</dependency> |
37 |
bvdschans |
20304 |
</dependencies> |
38 |
|
|
|
39 |
|
|
<build> |
40 |
|
|
<defaultGoal>package</defaultGoal> |
41 |
|
|
<plugins> |
42 |
|
|
<plugin> |
43 |
|
|
<groupId>org.apache.maven.plugins</groupId> |
44 |
|
|
<artifactId>maven-war-plugin</artifactId> |
45 |
|
|
<version>2.1-beta-1</version> |
46 |
bvdschans |
20305 |
<configuration> |
47 |
|
|
<overlays> |
48 |
|
|
<overlay> |
49 |
|
|
<groupId>org.hippoecm</groupId> |
50 |
|
|
<artifactId>hippo-ecm-repository-application</artifactId> |
51 |
|
|
<excludes> |
52 |
|
|
<exclude>WEB-INF/lib/commons-logging*.jar</exclude> |
53 |
|
|
<exclude>WEB-INF/lib/commons-lang*.jar</exclude> |
54 |
|
|
<exclude>WEB-INF/lib/commons-collections*.jar</exclude> |
55 |
|
|
<exclude>WEB-INF/lib/*slf4j*.jar</exclude> |
56 |
|
|
<exclude>WEB-INF/lib/log4j*.jar</exclude> |
57 |
|
|
</excludes> |
58 |
|
|
</overlay> |
59 |
|
|
<overlay> |
60 |
bvdschans |
20307 |
<groupId>org.onehippo.ecm</groupId> |
61 |
|
|
<artifactId>hst_docs-site</artifactId> |
62 |
bvdschans |
20305 |
<excludes> |
63 |
|
|
<exclude>WEB-INF/log4j.*</exclude> |
64 |
|
|
<exclude>WEB-INF/jetty.*</exclude> |
65 |
|
|
</excludes> |
66 |
|
|
</overlay> |
67 |
|
|
</overlays> |
68 |
|
|
</configuration> |
69 |
bvdschans |
20304 |
</plugin> |
70 |
|
|
</plugins> |
71 |
|
|
</build> |
72 |
|
|
|
73 |
bvdschans |
17624 |
</project> |
74 |
bvdschans |
20304 |
|