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