1 |
<?xml version="1.0" encoding="UTF-8"?><!-- |
2 |
Copyright 2010-2014 Hippo B.V. (http://www.onehippo.com) |
3 |
|
4 |
Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
you may not use this file except in compliance with the License. |
6 |
You may obtain a copy of the License at |
7 |
|
8 |
http://www.apache.org/licenses/LICENSE-2.0 |
9 |
|
10 |
Unless required by applicable law or agreed to in writing, software |
11 |
distributed under the License is distributed on an "AS IS" |
12 |
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 |
See the License for the specific language governing permissions and |
14 |
limitations under the License. |
15 |
--> |
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 |
<parent> |
20 |
<groupId>com.onehippo.gogreen</groupId> |
21 |
<artifactId>hippogogreen</artifactId> |
22 |
<version>3.10.00-restyling-SNAPSHOT</version> |
23 |
</parent> |
24 |
|
25 |
<name>Hippo Go Green Site</name> |
26 |
<artifactId>hippogogreen-site</artifactId> |
27 |
<packaging>war</packaging> |
28 |
|
29 |
<properties> |
30 |
<sonar.l10n.locales>en_US,nl_NL,fr_FR</sonar.l10n.locales> |
31 |
</properties> |
32 |
|
33 |
<dependencies> |
34 |
|
35 |
<dependency> |
36 |
<groupId>com.onehippo.gogreen</groupId> |
37 |
<artifactId>hippogogreen-site-assembly</artifactId> |
38 |
<version>${project.version}</version> |
39 |
</dependency> |
40 |
|
41 |
<dependency> |
42 |
<groupId>javax.servlet</groupId> |
43 |
<artifactId>jstl</artifactId> |
44 |
</dependency> |
45 |
|
46 |
<dependency> |
47 |
<groupId>org.onehippo.cms7.hst.dependencies</groupId> |
48 |
<artifactId>hst-server-dependencies</artifactId> |
49 |
<type>pom</type> |
50 |
<exclusions> |
51 |
<exclusion> |
52 |
<artifactId>rome</artifactId> |
53 |
<groupId>rome</groupId> |
54 |
</exclusion> |
55 |
</exclusions> |
56 |
</dependency> |
57 |
|
58 |
<dependency> |
59 |
<groupId>org.onehippo.cms7.hst.dependencies</groupId> |
60 |
<artifactId>hst-spring-dependencies</artifactId> |
61 |
<type>pom</type> |
62 |
</dependency> |
63 |
|
64 |
<dependency> |
65 |
<groupId>org.onehippo.cms7.hst.dependencies</groupId> |
66 |
<artifactId>hst-client-dependencies</artifactId> |
67 |
<type>pom</type> |
68 |
</dependency> |
69 |
|
70 |
<dependency> |
71 |
<groupId>taglibs</groupId> |
72 |
<artifactId>standard</artifactId> |
73 |
</dependency> |
74 |
|
75 |
<dependency> |
76 |
<groupId>org.springframework</groupId> |
77 |
<artifactId>spring-core</artifactId> |
78 |
</dependency> |
79 |
|
80 |
<dependency> |
81 |
<groupId>org.springframework</groupId> |
82 |
<artifactId>spring-web</artifactId> |
83 |
</dependency> |
84 |
|
85 |
<dependency> |
86 |
<groupId>org.springframework</groupId> |
87 |
<artifactId>spring-webmvc</artifactId> |
88 |
</dependency> |
89 |
|
90 |
<dependency> |
91 |
<groupId>org.springframework</groupId> |
92 |
<artifactId>spring-aop</artifactId> |
93 |
</dependency> |
94 |
|
95 |
<dependency> |
96 |
<groupId>commons-lang</groupId> |
97 |
<artifactId>commons-lang</artifactId> |
98 |
</dependency> |
99 |
|
100 |
<dependency> |
101 |
<groupId>org.onehippo.yui</groupId> |
102 |
<artifactId>yui-2.xx-sources</artifactId> |
103 |
</dependency> |
104 |
|
105 |
<dependency> |
106 |
<groupId>org.onehippo.forge</groupId> |
107 |
<artifactId>tcmp-component</artifactId> |
108 |
</dependency> |
109 |
|
110 |
<dependency> |
111 |
<groupId>org.onehippo.forge.poll</groupId> |
112 |
<artifactId>poll-hst-client</artifactId> |
113 |
</dependency> |
114 |
|
115 |
<dependency> |
116 |
<groupId>org.onehippo.forge.sitemap</groupId> |
117 |
<artifactId>sitemap-component</artifactId> |
118 |
</dependency> |
119 |
|
120 |
<dependency> |
121 |
<groupId>org.freemarker</groupId> |
122 |
<artifactId>freemarker</artifactId> |
123 |
</dependency> |
124 |
|
125 |
<dependency> |
126 |
<groupId>net.java.dev.rome</groupId> |
127 |
<artifactId>rome-fetcher</artifactId> |
128 |
<exclusions> |
129 |
<exclusion> |
130 |
<groupId>xerces</groupId> |
131 |
<artifactId>xercesImpl</artifactId> |
132 |
</exclusion> |
133 |
<exclusion> |
134 |
<groupId>commons-logging</groupId> |
135 |
<artifactId>commons-logging-api</artifactId> |
136 |
</exclusion> |
137 |
<exclusion> |
138 |
<groupId>jdom</groupId> |
139 |
<artifactId>jdom</artifactId> |
140 |
</exclusion> |
141 |
</exclusions> |
142 |
</dependency> |
143 |
|
144 |
<dependency> |
145 |
<groupId>org.onehippo</groupId> |
146 |
<artifactId>taxonomy-api</artifactId> |
147 |
</dependency> |
148 |
|
149 |
<dependency> |
150 |
<groupId>org.onehippo</groupId> |
151 |
<artifactId>taxonomy-hst-api</artifactId> |
152 |
</dependency> |
153 |
|
154 |
<dependency> |
155 |
<groupId>org.onehippo</groupId> |
156 |
<artifactId>taxonomy-hstclient</artifactId> |
157 |
</dependency> |
158 |
|
159 |
<dependency> |
160 |
<groupId>org.json</groupId> |
161 |
<artifactId>json</artifactId> |
162 |
</dependency> |
163 |
|
164 |
<dependency> |
165 |
<groupId>org.onehippo.cms7.hst.client-modules</groupId> |
166 |
<artifactId>hst-cms-rest</artifactId> |
167 |
</dependency> |
168 |
|
169 |
<dependency> |
170 |
<groupId>org.onehippo.cms7.hst.client-modules</groupId> |
171 |
<artifactId>hst-page-composer</artifactId> |
172 |
</dependency> |
173 |
|
174 |
<dependency> |
175 |
<groupId>org.onehippo.cms7.hst.components</groupId> |
176 |
<artifactId>hst-jaxrs</artifactId> |
177 |
</dependency> |
178 |
|
179 |
<dependency> |
180 |
<groupId>net.java.dev.rome</groupId> |
181 |
<artifactId>rome</artifactId> |
182 |
<exclusions> |
183 |
<exclusion> |
184 |
<groupId>jdom</groupId> |
185 |
<artifactId>jdom</artifactId> |
186 |
</exclusion> |
187 |
</exclusions> |
188 |
</dependency> |
189 |
|
190 |
<dependency> |
191 |
<groupId>org.apache.geronimo.specs</groupId> |
192 |
<artifactId>geronimo-annotation_1.1_spec</artifactId> |
193 |
</dependency> |
194 |
|
195 |
<dependency> |
196 |
<groupId>junit</groupId> |
197 |
<artifactId>junit</artifactId> |
198 |
</dependency> |
199 |
|
200 |
<dependency> |
201 |
<groupId>org.easymock</groupId> |
202 |
<artifactId>easymock</artifactId> |
203 |
</dependency> |
204 |
|
205 |
<dependency> |
206 |
<groupId>org.springframework</groupId> |
207 |
<artifactId>spring-test</artifactId> |
208 |
<scope>test</scope> |
209 |
</dependency> |
210 |
|
211 |
<dependency> |
212 |
<groupId>org.onehippo.cms7.hst.client-modules</groupId> |
213 |
<artifactId>hst-google-analytics-hst</artifactId> |
214 |
</dependency> |
215 |
|
216 |
</dependencies> |
217 |
|
218 |
<build> |
219 |
<defaultGoal>package</defaultGoal> |
220 |
<finalName>site</finalName> |
221 |
|
222 |
<resources> |
223 |
<resource> |
224 |
<filtering>false</filtering> |
225 |
<directory>src/main/java</directory> |
226 |
<includes> |
227 |
<include>**/*.properties</include> |
228 |
</includes> |
229 |
</resource> |
230 |
<resource> |
231 |
<directory>src/main/resources</directory> |
232 |
<filtering>true</filtering> |
233 |
<includes> |
234 |
<include>**</include> |
235 |
</includes> |
236 |
</resource> |
237 |
</resources> |
238 |
|
239 |
<plugins> |
240 |
<plugin> |
241 |
<groupId>org.codehaus.cargo</groupId> |
242 |
<artifactId>cargo-maven2-plugin</artifactId> |
243 |
<configuration> |
244 |
<configuration> |
245 |
<type>runtime</type> |
246 |
</configuration> |
247 |
<container> |
248 |
<type>remote</type> |
249 |
</container> |
250 |
</configuration> |
251 |
</plugin> |
252 |
<plugin> |
253 |
<groupId>org.apache.maven.plugins</groupId> |
254 |
<artifactId>maven-war-plugin</artifactId> |
255 |
<configuration> |
256 |
<attachClasses>true</attachClasses> |
257 |
<classesClassifier>classes</classesClassifier> |
258 |
</configuration> |
259 |
</plugin> |
260 |
</plugins> |
261 |
|
262 |
</build> |
263 |
|
264 |
</project> |