1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2010-2015 Hippo B.V. (http://www.onehippo.com) |
4 |
|
5 |
Licensed under the Apache License, |
6 |
Version 2.0 (the "License"); you may not use this file except in |
7 |
compliance with the License. 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 distributed under |
12 |
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES |
13 |
OR CONDITIONS OF ANY KIND, either express or implied. See the |
14 |
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 |
<parent> |
20 |
<groupId>org.onehippo.cms7</groupId> |
21 |
<artifactId>hippo-plugin-sitemap</artifactId> |
22 |
<version>2.2.1-SNAPSHOT</version> |
23 |
</parent> |
24 |
<name>Hippo Plugin Sitemap Component</name> |
25 |
<description>Hippo Plugin Sitemap Component</description> |
26 |
<artifactId>hippo-plugin-sitemap-component</artifactId> |
27 |
|
28 |
<dependencies> |
29 |
<dependency> |
30 |
<groupId>org.onehippo.cms7.hst.dependencies</groupId> |
31 |
<artifactId>hst-client-dependencies</artifactId> |
32 |
<version>${hippo.hst.version}</version> |
33 |
<scope>provided</scope> |
34 |
<type>pom</type> |
35 |
</dependency> |
36 |
<dependency> |
37 |
<groupId>org.onehippo.cms7.hst</groupId> |
38 |
<artifactId>hst-api</artifactId> |
39 |
<version>${hippo.hst.version}</version> |
40 |
<scope>provided</scope> |
41 |
<!-- <type>pom</type> --> |
42 |
</dependency> |
43 |
<dependency> |
44 |
<groupId>org.onehippo.cms7.hst</groupId> |
45 |
<artifactId>hst-commons</artifactId> |
46 |
<version>${hippo.hst.version}</version> |
47 |
<scope>provided</scope> |
48 |
</dependency> |
49 |
<dependency> |
50 |
<groupId>org.onehippo.cms7</groupId> |
51 |
<artifactId>hippo-cms7-commons</artifactId> |
52 |
<version>${hippo.commons.version}</version> |
53 |
<scope>provided</scope> |
54 |
</dependency> |
55 |
<dependency> |
56 |
<groupId>junit</groupId> |
57 |
<artifactId>junit</artifactId> |
58 |
<version>4.4</version> |
59 |
<scope>test</scope> |
60 |
</dependency> |
61 |
<!-- For HippoNodeType constants --> |
62 |
<dependency> |
63 |
<groupId>org.onehippo.cms7</groupId> |
64 |
<artifactId>hippo-repository-api</artifactId> |
65 |
<version>${hippo.repository.version}</version> |
66 |
<scope>provided</scope> |
67 |
</dependency> |
68 |
<!-- For HippoStdNodeType constants --> |
69 |
<dependency> |
70 |
<groupId>org.onehippo.cms7</groupId> |
71 |
<artifactId>hippo-repository-builtin</artifactId> |
72 |
<version>${hippo.repository.version}</version> |
73 |
<scope>provided</scope> |
74 |
</dependency> |
75 |
<dependency> |
76 |
<groupId>org.onehippo.cms7.hst.components</groupId> |
77 |
<artifactId>hst-jaxrs</artifactId> |
78 |
<version>${hippo.hst.version}</version> |
79 |
<scope>provided</scope> |
80 |
</dependency> |
81 |
<dependency> |
82 |
<groupId>org.apache.commons</groupId> |
83 |
<artifactId>commons-compress</artifactId> |
84 |
<version>${commons-compress.version}</version> |
85 |
</dependency> |
86 |
<!-- needed for @Required annotation --> |
87 |
<dependency> |
88 |
<groupId>org.springframework</groupId> |
89 |
<artifactId>spring-beans</artifactId> |
90 |
<version>${spring.version}</version> |
91 |
<scope>provided</scope> |
92 |
</dependency> |
93 |
</dependencies> |
94 |
<build> |
95 |
<defaultGoal>package</defaultGoal> |
96 |
</build> |
97 |
</project> |