1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2009-2014 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 |
|
20 |
<parent> |
21 |
<groupId>org.onehippo.cms7</groupId> |
22 |
<artifactId>hippo-cms7-project</artifactId> |
23 |
<version>27-SNAPSHOT</version> |
24 |
</parent> |
25 |
|
26 |
<name>Hippo Plugin Sitemap</name> |
27 |
<description>Hippo Plugin Sitemap</description> |
28 |
<groupId>org.onehippo.cms7</groupId> |
29 |
<artifactId>hippo-plugin-sitemap</artifactId> |
30 |
<packaging>pom</packaging> |
31 |
<version>1.07.00-SNAPSHOT</version> |
32 |
|
33 |
<inceptionYear>2009</inceptionYear> |
34 |
|
35 |
<scm> |
36 |
<connection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/sitemap/trunk/</connection> |
37 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/sitemap/trunk/</developerConnection> |
38 |
<url>https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/sitemap/trunk/</url> |
39 |
</scm> |
40 |
|
41 |
<properties> |
42 |
<!-- use root project name for all project modules NOTICE files, should be the same as in the root NOTICE file --> |
43 |
<notice.project.name>Hippo Plugin Sitemap</notice.project.name> |
44 |
|
45 |
<hippo.hst.version>2.29.00-SNAPSHOT</hippo.hst.version> |
46 |
<hippo.repository.version>2.27.00-SNAPSHOT</hippo.repository.version> |
47 |
|
48 |
<commons-compress.version>1.4.1</commons-compress.version> |
49 |
<jaxb-api.version>2.1</jaxb-api.version> |
50 |
</properties> |
51 |
|
52 |
<repositories> |
53 |
<repository> |
54 |
<id>hippo</id> |
55 |
<name>Hippo Maven 2</name> |
56 |
<url>https://maven.onehippo.com/maven2/</url> |
57 |
<snapshots> |
58 |
<enabled>false</enabled> |
59 |
</snapshots> |
60 |
<releases> |
61 |
<updatePolicy>never</updatePolicy> |
62 |
</releases> |
63 |
</repository> |
64 |
</repositories> |
65 |
|
66 |
<issueManagement> |
67 |
<system>Jira</system> |
68 |
<url>https://issues.onehippo.com/browse/HIPPLUG/component/10856</url> |
69 |
</issueManagement> |
70 |
|
71 |
<profiles> |
72 |
<profile> |
73 |
<id>pedantic</id> |
74 |
<build> |
75 |
<plugins> |
76 |
<plugin> |
77 |
<groupId>org.apache.rat</groupId> |
78 |
<artifactId>apache-rat-plugin</artifactId> |
79 |
<inherited>false</inherited> |
80 |
<configuration> |
81 |
<excludes combine.children="append"> |
82 |
<!-- covered by 3rd-party licenses in the LICENSE file --> |
83 |
<exclude>component/src/main/java/org/onehippo/forge/sitemap/components/model/news/package-info.java</exclude> |
84 |
<exclude>component/src/main/java/org/onehippo/forge/sitemap/components/model/news/info/package-info.java</exclude> |
85 |
<exclude>component/src/main/java/org/onehippo/forge/sitemap/components/model/package-info.java</exclude> |
86 |
<exclude>component/src/main/java/org/onehippo/forge/sitemap/components/model/sitemap.xsd</exclude> |
87 |
<exclude>component/src/main/java/org/onehippo/forge/sitemap/components/model/sitemapindex/package-info.java</exclude> |
88 |
<exclude>component/src/main/java/org/onehippo/forge/sitemap/components/model/sitemapindex/sitemapindex.xsd</exclude> |
89 |
<!-- repository content XML --> |
90 |
<exclude>content/src/main/resources/*.xml</exclude> |
91 |
</excludes> |
92 |
</configuration> |
93 |
</plugin> |
94 |
</plugins> |
95 |
</build> |
96 |
</profile> |
97 |
</profiles> |
98 |
|
99 |
<modules> |
100 |
<module>component</module> |
101 |
<module>content</module> |
102 |
</modules> |
103 |
|
104 |
</project> |