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-client</artifactId> |
26 |
<name>JCR Diff - Client</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 |
<dependency> |
35 |
<groupId>org.apache.httpcomponents</groupId> |
36 |
<artifactId>httpclient</artifactId> |
37 |
</dependency> |
38 |
|
39 |
<dependency> |
40 |
<groupId>org.apache.jackrabbit</groupId> |
41 |
<artifactId>jackrabbit-core</artifactId> |
42 |
</dependency> |
43 |
<dependency> |
44 |
<groupId>junit</groupId> |
45 |
<artifactId>junit</artifactId> |
46 |
</dependency> |
47 |
<dependency> |
48 |
<groupId>org.mortbay.jetty</groupId> |
49 |
<artifactId>jetty</artifactId> |
50 |
</dependency> |
51 |
<dependency> |
52 |
<groupId>org.easymock</groupId> |
53 |
<artifactId>easymock</artifactId> |
54 |
</dependency> |
55 |
</dependencies> |
56 |
|
57 |
<build> |
58 |
<testResources> |
59 |
<testResource> |
60 |
<directory>src/test/resources</directory> |
61 |
<filtering>false</filtering> |
62 |
<includes> |
63 |
<include>**/*</include> |
64 |
</includes> |
65 |
</testResource> |
66 |
</testResources> |
67 |
<plugins> |
68 |
<plugin> |
69 |
<groupId>org.apache.maven.plugins</groupId> |
70 |
<artifactId>maven-surefire-plugin</artifactId> |
71 |
<configuration> |
72 |
<systemPropertyVariables> |
73 |
<org.apache.jackrabbit.repository.conf>${project.build.directory}/test-classes/repository.xml</org.apache.jackrabbit.repository.conf> |
74 |
<org.apache.jackrabbit.repository.home>${project.build.directory}</org.apache.jackrabbit.repository.home> |
75 |
</systemPropertyVariables> |
76 |
</configuration> |
77 |
</plugin> |
78 |
</plugins> |
79 |
</build> |
80 |
|
81 |
</project> |