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