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/maven-v4_0_0.xsd"> |
18 |
<modelVersion>4.0.0</modelVersion> |
19 |
|
20 |
<parent> |
21 |
<groupId>org.onehippo.cms7</groupId> |
22 |
<artifactId>hippo-cms7-project</artifactId> |
23 |
<version>15</version> |
24 |
</parent> |
25 |
|
26 |
<name>JCR Diff</name> |
27 |
<description>Diff & patch tooling for JCR (remote) repositories</description> |
28 |
|
29 |
<inceptionYear>2011</inceptionYear> |
30 |
|
31 |
<groupId>org.onehippo.cms7</groupId> |
32 |
<artifactId>jcrdiff</artifactId> |
33 |
<version>1.01.03-SNAPSHOT</version> |
34 |
<packaging>pom</packaging> |
35 |
|
36 |
<properties> |
37 |
<hippo.repository.version>2.24.00</hippo.repository.version> |
38 |
<hippo.utilities.version>1.01.03-SNAPSHOT</hippo.utilities.version> |
39 |
<commons-lang.version>2.5</commons-lang.version> |
40 |
<dom4j.version>1.6.1</dom4j.version> |
41 |
<easymock.version>3.0</easymock.version> |
42 |
<jackrabbit.version>2.1.2</jackrabbit.version> |
43 |
<jetty.version>6.1.26</jetty.version> |
44 |
<junit.version>4.8.2</junit.version> |
45 |
<httpclient.version>4.1</httpclient.version> |
46 |
<xpp3.version>1.1.4c</xpp3.version> |
47 |
</properties> |
48 |
|
49 |
<modules> |
50 |
<module>core</module> |
51 |
<module>servlet</module> |
52 |
<module>client</module> |
53 |
</modules> |
54 |
|
55 |
<repositories> |
56 |
<repository> |
57 |
<id>hippo</id> |
58 |
<name>Hippo Maven 2</name> |
59 |
<url>http://maven.onehippo.com/maven2/</url> |
60 |
<snapshots> |
61 |
<enabled>false</enabled> |
62 |
</snapshots> |
63 |
<releases> |
64 |
<updatePolicy>never</updatePolicy> |
65 |
</releases> |
66 |
</repository> |
67 |
</repositories> |
68 |
|
69 |
<scm> |
70 |
<connection>scm:svn:http://svn.onehippo.org/repos/hippo/hippo-components/jcrdiff/trunk</connection> |
71 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-components/jcrdiff/trunk</developerConnection> |
72 |
<url>http://svn.onehippo.org/repos/hippo/hippo-components/jcrdiff/trunk</url> |
73 |
</scm> |
74 |
|
75 |
<!-- Where to publish the project data --> |
76 |
<distributionManagement> |
77 |
<repository> |
78 |
<name>Hippo Maven 2 Repository</name> |
79 |
<id>hippo-maven2</id> |
80 |
<url>https://maven.onehippo.com/content/repositories/releases/</url> |
81 |
<uniqueVersion>false</uniqueVersion> |
82 |
</repository> |
83 |
<snapshotRepository> |
84 |
<id>hippo-maven2-snapshots</id> |
85 |
<name>Hippo Maven 2 Snapshots Repository</name> |
86 |
<url>https://maven.onehippo.com/content/repositories/snapshots/</url> |
87 |
<uniqueVersion>false</uniqueVersion> |
88 |
</snapshotRepository> |
89 |
</distributionManagement> |
90 |
|
91 |
<dependencyManagement> |
92 |
<dependencies> |
93 |
<dependency> |
94 |
<groupId>org.onehippo.cms7</groupId> |
95 |
<artifactId>hippo-repository-api</artifactId> |
96 |
<version>${hippo.repository.version}</version> |
97 |
</dependency> |
98 |
<dependency> |
99 |
<groupId>org.onehippo.cms7</groupId> |
100 |
<artifactId>hippo-cms7-utilities</artifactId> |
101 |
<version>${hippo.utilities.version}</version> |
102 |
</dependency> |
103 |
<dependency> |
104 |
<groupId>org.apache.jackrabbit</groupId> |
105 |
<artifactId>jackrabbit-jcr-commons</artifactId> |
106 |
<version>${jackrabbit.version}</version> |
107 |
</dependency> |
108 |
<dependency> |
109 |
<groupId>commons-lang</groupId> |
110 |
<artifactId>commons-lang</artifactId> |
111 |
<version>${commons-lang.version}</version> |
112 |
</dependency> |
113 |
<dependency> |
114 |
<groupId>dom4j</groupId> |
115 |
<artifactId>dom4j</artifactId> |
116 |
<version>${dom4j.version}</version> |
117 |
</dependency> |
118 |
<dependency> |
119 |
<groupId>org.apache.httpcomponents</groupId> |
120 |
<artifactId>httpclient</artifactId> |
121 |
<version>${httpclient.version}</version> |
122 |
</dependency> |
123 |
<dependency> |
124 |
<groupId>xpp3</groupId> |
125 |
<artifactId>xpp3</artifactId> |
126 |
<version>${xpp3.version}</version> |
127 |
</dependency> |
128 |
|
129 |
<!-- test dependencies --> |
130 |
<dependency> |
131 |
<groupId>org.apache.jackrabbit</groupId> |
132 |
<artifactId>jackrabbit-core</artifactId> |
133 |
<version>${jackrabbit.version}</version> |
134 |
<scope>test</scope> |
135 |
</dependency> |
136 |
<dependency> |
137 |
<groupId>junit</groupId> |
138 |
<artifactId>junit</artifactId> |
139 |
<version>${junit.version}</version> |
140 |
<scope>test</scope> |
141 |
</dependency> |
142 |
<dependency> |
143 |
<groupId>org.mortbay.jetty</groupId> |
144 |
<artifactId>jetty</artifactId> |
145 |
<version>${jetty.version}</version> |
146 |
<scope>test</scope> |
147 |
</dependency> |
148 |
<dependency> |
149 |
<groupId>org.easymock</groupId> |
150 |
<artifactId>easymock</artifactId> |
151 |
<version>${easymock.version}</version> |
152 |
<scope>test</scope> |
153 |
</dependency> |
154 |
</dependencies> |
155 |
</dependencyManagement> |
156 |
|
157 |
</project> |