1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2011 Hippo. |
4 |
|
5 |
Licensed under the Apache License, Version 2.0 (the "License"); |
6 |
you may not use this file except in compliance with the License. |
7 |
You may obtain a copy of the License at |
8 |
|
9 |
http://www.apache.org/licenses/LICENSE-2.0 |
10 |
|
11 |
Unless required by applicable law or agreed to in writing, software |
12 |
distributed under the License is distributed on an "AS IS" BASIS, |
13 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 |
See the License for the specific language governing permissions and |
15 |
limitations under the License. |
16 |
--> |
17 |
<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/xsd/maven-4.0.0.xsd"> |
18 |
<parent> |
19 |
<groupId>org.onehippo.cms7</groupId> |
20 |
<artifactId>jcrdiff</artifactId> |
21 |
<version>1.01.03-SNAPSHOT</version> |
22 |
</parent> |
23 |
<modelVersion>4.0.0</modelVersion> |
24 |
|
25 |
<artifactId>jcrdiff-servlet</artifactId> |
26 |
<name>JCR Diff - Servlet</name> |
27 |
|
28 |
<dependencies> |
29 |
<dependency> |
30 |
<groupId>org.onehippo.cms7</groupId> |
31 |
<artifactId>jcrdiff-core</artifactId> |
32 |
<version>${project.version}</version> |
33 |
</dependency> |
34 |
|
35 |
<dependency> |
36 |
<groupId>org.apache.jackrabbit</groupId> |
37 |
<artifactId>jackrabbit-jcr-commons</artifactId> |
38 |
</dependency> |
39 |
|
40 |
<dependency> |
41 |
<groupId>org.apache.httpcomponents</groupId> |
42 |
<artifactId>httpclient</artifactId> |
43 |
<scope>test</scope> |
44 |
</dependency> |
45 |
<dependency> |
46 |
<groupId>org.apache.jackrabbit</groupId> |
47 |
<artifactId>jackrabbit-core</artifactId> |
48 |
</dependency> |
49 |
<dependency> |
50 |
<groupId>junit</groupId> |
51 |
<artifactId>junit</artifactId> |
52 |
</dependency> |
53 |
<dependency> |
54 |
<groupId>org.mortbay.jetty</groupId> |
55 |
<artifactId>jetty</artifactId> |
56 |
</dependency> |
57 |
</dependencies> |
58 |
|
59 |
<build> |
60 |
<defaultGoal>package</defaultGoal> |
61 |
<resources> |
62 |
<resource> |
63 |
<filtering>false</filtering> |
64 |
<directory>${basedir}/src/main/java</directory> |
65 |
<includes> |
66 |
<include>**/*.xml</include> |
67 |
</includes> |
68 |
</resource> |
69 |
<resource> |
70 |
<filtering>false</filtering> |
71 |
<directory>${basedir}/src/main/resources</directory> |
72 |
<includes> |
73 |
<include>**/*</include> |
74 |
</includes> |
75 |
</resource> |
76 |
</resources> |
77 |
<testResources> |
78 |
<testResource> |
79 |
<filtering>false</filtering> |
80 |
<directory>${basedir}/src/test/java</directory> |
81 |
<includes> |
82 |
<include>**/*.xml</include> |
83 |
</includes> |
84 |
</testResource> |
85 |
<testResource> |
86 |
<filtering>false</filtering> |
87 |
<directory>${basedir}/src/test/resources</directory> |
88 |
<includes> |
89 |
<include>**/*</include> |
90 |
</includes> |
91 |
</testResource> |
92 |
</testResources> |
93 |
<plugins> |
94 |
<plugin> |
95 |
<artifactId>maven-compiler-plugin</artifactId> |
96 |
<configuration> |
97 |
<target>1.6</target> |
98 |
<source>1.6</source> |
99 |
</configuration> |
100 |
</plugin> |
101 |
<plugin> |
102 |
<artifactId>maven-idea-plugin</artifactId> |
103 |
<version>2.0</version> |
104 |
<configuration> |
105 |
<downloadSources>true</downloadSources> |
106 |
<jdkLevel>1.6</jdkLevel> |
107 |
</configuration> |
108 |
</plugin> |
109 |
<plugin> |
110 |
<groupId>org.apache.maven.plugins</groupId> |
111 |
<artifactId>maven-surefire-plugin</artifactId> |
112 |
<configuration> |
113 |
<systemPropertyVariables> |
114 |
<org.apache.jackrabbit.repository.conf>${project.build.directory}/test-classes/repository.xml</org.apache.jackrabbit.repository.conf> |
115 |
<org.apache.jackrabbit.repository.home>${project.build.directory}</org.apache.jackrabbit.repository.home> |
116 |
</systemPropertyVariables> |
117 |
</configuration> |
118 |
</plugin> |
119 |
</plugins> |
120 |
</build> |
121 |
|
122 |
</project> |