1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2008 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" |
13 |
BASIS, 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 |
--><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"> |
17 |
<modelVersion>4.0.0</modelVersion> |
18 |
|
19 |
<name>docsite</name> |
20 |
<description>Hippo documentation site</description> |
21 |
<groupId>org.onehippo.ecm</groupId> |
22 |
<artifactId>hst_docs</artifactId> |
23 |
<version>1.01.05-SNAPSHOT</version> |
24 |
<packaging>pom</packaging> |
25 |
|
26 |
<modules> |
27 |
<module>content</module> |
28 |
<module>cms</module> |
29 |
<module>site</module> |
30 |
<module>import-files</module> |
31 |
<module>package</module> |
32 |
</modules> |
33 |
|
34 |
<properties> |
35 |
|
36 |
<servlet-api.version>2.4</servlet-api.version> |
37 |
<jstl.version>1.1.2</jstl.version> |
38 |
<taglibs.version>1.1.2</taglibs.version> |
39 |
<javax.jcr.version>1.0</javax.jcr.version> |
40 |
<jta.version>1.1</jta.version> |
41 |
|
42 |
<slf4j.version>1.5.6</slf4j.version> |
43 |
<log4j.version>1.2.13</log4j.version> |
44 |
|
45 |
<junit.version>4.5</junit.version> |
46 |
|
47 |
<hippoecm.version>2.06.10</hippoecm.version> |
48 |
<hst.version>2.03.11</hst.version> |
49 |
|
50 |
<wagon.ftp.version>1.0-alpha-6</wagon.ftp.version> |
51 |
<javax.jcr.version>1.0</javax.jcr.version> |
52 |
<spring.version>2.5.6</spring.version> |
53 |
<xalan.version>2.4.1</xalan.version> |
54 |
<xerces.version>2.3.0</xerces.version> |
55 |
<xml-apis.version>2.0.2</xml-apis.version> |
56 |
<commons-proxy.version>1.0</commons-proxy.version> |
57 |
|
58 |
</properties> |
59 |
|
60 |
<!-- |
61 |
Software configuration management (scm): where to find and how to get access to the source repository |
62 |
This is used by normal plugins, but also to autogenerate documentation in .../target/site/source-repository.html |
63 |
--> |
64 |
<scm> |
65 |
<connection>scm:svn:http://svn.onehippo.org/repos/hippo/hippo-documentation/hst_docs/trunk</connection> |
66 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-documentation/hst_docs/trunk</developerConnection> |
67 |
<url>http://svn.onehippo.org/repos/hippo/hippo-documentation/hst_docs/trunk</url> |
68 |
</scm> |
69 |
|
70 |
|
71 |
|
72 |
<dependencyManagement> |
73 |
|
74 |
<dependencies> |
75 |
|
76 |
<dependency> |
77 |
<groupId>javax.jcr</groupId> |
78 |
<artifactId>jcr</artifactId> |
79 |
<version>${javax.jcr.version}</version> |
80 |
<scope>provided</scope> |
81 |
</dependency> |
82 |
|
83 |
<dependency> |
84 |
<groupId>org.apache.geronimo.specs</groupId> |
85 |
<artifactId>geronimo-jta_1.1_spec</artifactId> |
86 |
<version>${jta.version}</version> |
87 |
<scope>provided</scope> |
88 |
</dependency> |
89 |
|
90 |
<dependency> |
91 |
<groupId>javax.servlet</groupId> |
92 |
<artifactId>servlet-api</artifactId> |
93 |
<version>${servlet-api.version}</version> |
94 |
<scope>provided</scope> |
95 |
</dependency> |
96 |
|
97 |
<dependency> |
98 |
<groupId>javax.servlet</groupId> |
99 |
<artifactId>jstl</artifactId> |
100 |
<version>${jstl.version}</version> |
101 |
<scope>runtime</scope> |
102 |
</dependency> |
103 |
|
104 |
<dependency> |
105 |
<groupId>taglibs</groupId> |
106 |
<artifactId>standard</artifactId> |
107 |
<version>${taglibs.version}</version> |
108 |
<scope>runtime</scope> |
109 |
</dependency> |
110 |
|
111 |
<dependency> |
112 |
<groupId>xml-apis</groupId> |
113 |
<artifactId>xml-apis</artifactId> |
114 |
<version>${xml-apis.version}</version> |
115 |
<scope>runtime</scope> |
116 |
</dependency> |
117 |
|
118 |
<dependency> |
119 |
<groupId>xerces</groupId> |
120 |
<artifactId>xercesImpl</artifactId> |
121 |
<version>${xerces.version}</version> |
122 |
<scope>runtime</scope> |
123 |
</dependency> |
124 |
|
125 |
<dependency> |
126 |
<groupId>xerces</groupId> |
127 |
<artifactId>xerces</artifactId> |
128 |
<version>${xerces.version}</version> |
129 |
<scope>runtime</scope> |
130 |
</dependency> |
131 |
|
132 |
<dependency> |
133 |
<groupId>xalan</groupId> |
134 |
<artifactId>xalan</artifactId> |
135 |
<version>${xalan.version}</version> |
136 |
<scope>runtime</scope> |
137 |
</dependency> |
138 |
|
139 |
<dependency> |
140 |
<groupId>org.slf4j</groupId> |
141 |
<artifactId>slf4j-api</artifactId> |
142 |
<version>${slf4j.version}</version> |
143 |
</dependency> |
144 |
|
145 |
<dependency> |
146 |
<groupId>org.slf4j</groupId> |
147 |
<artifactId>jcl-over-slf4j</artifactId> |
148 |
<version>${slf4j.version}</version> |
149 |
</dependency> |
150 |
|
151 |
<dependency> |
152 |
<groupId>org.slf4j</groupId> |
153 |
<artifactId>slf4j-log4j12</artifactId> |
154 |
<version>${slf4j.version}</version> |
155 |
<scope>runtime</scope> |
156 |
</dependency> |
157 |
|
158 |
<dependency> |
159 |
<groupId>log4j</groupId> |
160 |
<artifactId>log4j</artifactId> |
161 |
<version>${log4j.version}</version> |
162 |
<scope>runtime</scope> |
163 |
</dependency> |
164 |
|
165 |
<!-- Spring Framework --> |
166 |
|
167 |
<dependency> |
168 |
<groupId>org.springframework</groupId> |
169 |
<artifactId>spring-core</artifactId> |
170 |
<version>${spring.version}</version> |
171 |
<exclusions> |
172 |
<exclusion> |
173 |
<groupId>commons-logging</groupId> |
174 |
<artifactId>commons-logging</artifactId> |
175 |
</exclusion> |
176 |
</exclusions> |
177 |
</dependency> |
178 |
|
179 |
<dependency> |
180 |
<groupId>org.springframework</groupId> |
181 |
<artifactId>spring-web</artifactId> |
182 |
<version>${spring.version}</version> |
183 |
<exclusions> |
184 |
<exclusion> |
185 |
<groupId>commons-logging</groupId> |
186 |
<artifactId>commons-logging</artifactId> |
187 |
</exclusion> |
188 |
</exclusions> |
189 |
</dependency> |
190 |
|
191 |
<dependency> |
192 |
<groupId>org.springframework</groupId> |
193 |
<artifactId>spring-webmvc</artifactId> |
194 |
<version>${spring.version}</version> |
195 |
<exclusions> |
196 |
<exclusion> |
197 |
<groupId>commons-logging</groupId> |
198 |
<artifactId>commons-logging</artifactId> |
199 |
</exclusion> |
200 |
</exclusions> |
201 |
</dependency> |
202 |
|
203 |
<dependency> |
204 |
<groupId>org.springframework</groupId> |
205 |
<artifactId>spring-aop</artifactId> |
206 |
<version>${spring.version}</version> |
207 |
<exclusions> |
208 |
<exclusion> |
209 |
<groupId>commons-logging</groupId> |
210 |
<artifactId>commons-logging</artifactId> |
211 |
</exclusion> |
212 |
</exclusions> |
213 |
</dependency> |
214 |
|
215 |
<dependency> |
216 |
<groupId>org.hippoecm</groupId> |
217 |
<artifactId>hippo-ecm-package-war</artifactId> |
218 |
<version>${hippoecm.version}</version> |
219 |
<type>war</type> |
220 |
</dependency> |
221 |
|
222 |
<dependency> |
223 |
<groupId>org.onehippo.ecm.hst</groupId> |
224 |
<artifactId>hst-api</artifactId> |
225 |
<version>${hst.version}</version> |
226 |
<type>jar</type> |
227 |
</dependency> |
228 |
|
229 |
<dependency> |
230 |
<groupId>org.onehippo.ecm.hst</groupId> |
231 |
<artifactId>hst-commons</artifactId> |
232 |
<version>${hst.version}</version> |
233 |
<type>jar</type> |
234 |
</dependency> |
235 |
|
236 |
<dependency> |
237 |
<groupId>org.onehippo.ecm.hst</groupId> |
238 |
<artifactId>hst-content-beans</artifactId> |
239 |
<version>${hst.version}</version> |
240 |
<type>jar</type> |
241 |
</dependency> |
242 |
|
243 |
<dependency> |
244 |
<groupId>org.onehippo.ecm.hst</groupId> |
245 |
<artifactId>hst-ocm</artifactId> |
246 |
<version>${hst.version}</version> |
247 |
<type>jar</type> |
248 |
</dependency> |
249 |
|
250 |
<dependency> |
251 |
<groupId>org.onehippo.ecm.hst</groupId> |
252 |
<artifactId>hst-client</artifactId> |
253 |
<version>${hst.version}</version> |
254 |
<type>jar</type> |
255 |
</dependency> |
256 |
|
257 |
<!-- |
258 |
HST Core Component library can be used only as runtime scope. |
259 |
The HST client applications should not be dependent on HST-CORE component library |
260 |
because HST-CORE library will not be provided under portal environment. |
261 |
--> |
262 |
<dependency> |
263 |
<groupId>org.onehippo.ecm.hst.components</groupId> |
264 |
<artifactId>hst-core</artifactId> |
265 |
<version>${hst.version}</version> |
266 |
<type>jar</type> |
267 |
<scope>runtime</scope> |
268 |
</dependency> |
269 |
|
270 |
<dependency> |
271 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon.toolkit-cnd</groupId> |
272 |
<artifactId>hst-addon-cnd_7_1</artifactId> |
273 |
<version>${hst.version}</version> |
274 |
<type>jar</type> |
275 |
</dependency> |
276 |
|
277 |
<dependency> |
278 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
279 |
<artifactId>hst-addon-repository</artifactId> |
280 |
<version>${hst.version}</version> |
281 |
<type>jar</type> |
282 |
</dependency> |
283 |
|
284 |
<dependency> |
285 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
286 |
<artifactId>hst-addon-configuration-editor-frontend</artifactId> |
287 |
<version>${hst.version}</version> |
288 |
<type>jar</type> |
289 |
</dependency> |
290 |
|
291 |
<dependency> |
292 |
<groupId>org.onehippo.ecm.hst.toolkit-resources.addon</groupId> |
293 |
<artifactId>hst-addon-configuration-editor-repository</artifactId> |
294 |
<version>${hst.version}</version> |
295 |
<type>jar</type> |
296 |
</dependency> |
297 |
|
298 |
<dependency> |
299 |
<groupId>org.springframework</groupId> |
300 |
<artifactId>spring-test</artifactId> |
301 |
<version>${spring.version}</version> |
302 |
<scope>test</scope> |
303 |
</dependency> |
304 |
|
305 |
<dependency> |
306 |
<groupId>junit</groupId> |
307 |
<artifactId>junit</artifactId> |
308 |
<version>${junit.version}</version> |
309 |
<scope>test</scope> |
310 |
</dependency> |
311 |
|
312 |
<dependency> |
313 |
<groupId>commons-lang</groupId> |
314 |
<artifactId>commons-lang</artifactId> |
315 |
<version>2.4</version> |
316 |
</dependency> |
317 |
|
318 |
</dependencies> |
319 |
|
320 |
</dependencyManagement> |
321 |
|
322 |
<repositories> |
323 |
<repository> |
324 |
<id>hippo</id> |
325 |
<name>Hippo maven 2 repository.</name> |
326 |
<url>http://repository.hippocms.org/maven2/</url> |
327 |
<snapshots /> |
328 |
<releases> |
329 |
<updatePolicy>never</updatePolicy> |
330 |
</releases> |
331 |
<layout>default</layout> |
332 |
</repository> |
333 |
<repository> |
334 |
<id>hippo.legacy</id> |
335 |
<name>Hippo Maven 1 repository.</name> |
336 |
<url>http://repository.hippocms.org/maven/</url> |
337 |
<snapshots /> |
338 |
<releases> |
339 |
<updatePolicy>never</updatePolicy> |
340 |
</releases> |
341 |
<layout>legacy</layout> |
342 |
</repository> |
343 |
</repositories> |
344 |
|
345 |
<pluginRepositories> |
346 |
<pluginRepository> |
347 |
<id>hippo</id> |
348 |
<name>Hippo Maven 2 Repository</name> |
349 |
<url>http://repository.hippocms.org/maven2</url> |
350 |
</pluginRepository> |
351 |
<pluginRepository> |
352 |
<id>codehaus</id> |
353 |
<url>http://repository.codehaus.org/</url> |
354 |
<layout>default</layout> |
355 |
<snapshots> |
356 |
</snapshots> |
357 |
<releases> |
358 |
<updatePolicy>never</updatePolicy> |
359 |
</releases> |
360 |
</pluginRepository> |
361 |
</pluginRepositories> |
362 |
|
363 |
<build> |
364 |
<defaultGoal>package</defaultGoal> |
365 |
<pluginManagement> |
366 |
<plugins> |
367 |
<plugin> |
368 |
<groupId>org.apache.maven.plugins</groupId> |
369 |
<artifactId>maven-archetype-plugin</artifactId> |
370 |
<version>2.0-alpha-4</version> |
371 |
</plugin> |
372 |
<plugin> |
373 |
<inherited>true</inherited> |
374 |
<groupId>org.apache.maven.plugins</groupId> |
375 |
<artifactId>maven-compiler-plugin</artifactId> |
376 |
<configuration> |
377 |
<source>1.5</source> |
378 |
<target>1.5</target> |
379 |
</configuration> |
380 |
</plugin> |
381 |
</plugins> |
382 |
</pluginManagement> |
383 |
</build> |
384 |
|
385 |
</project> |