1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2014 Hippo B.V. (http://www.onehippo.com) |
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" BASIS, |
13 |
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 |
--> |
17 |
|
18 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
19 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
20 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
21 |
<modelVersion>4.0.0</modelVersion> |
22 |
|
23 |
<name>Uberlink</name> |
24 |
<description> |
25 |
Uberlink provides a CMS Document Editor field plugin which allows you to specify, for each use of the plugin in a |
26 |
document type, whether it should support only internal, only external or both kinds of links. |
27 |
Uberlink fields reduce Document Editor space usage and document bean complexity, and they reduce the need for a wealth |
28 |
of link-related compound fields. |
29 |
</description> |
30 |
|
31 |
<groupId>org.onehippo.forge.uberlink</groupId> |
32 |
<artifactId>uberlink</artifactId> |
33 |
<version>0.01.00-SNAPSHOT</version> |
34 |
<packaging>pom</packaging> |
35 |
<url>https://forge.onehippo.org/gf/project/uberlink</url> |
36 |
<inceptionYear>2014</inceptionYear> |
37 |
|
38 |
<parent> |
39 |
<groupId>org.onehippo.cms7</groupId> |
40 |
<artifactId>hippo-cms7-release</artifactId> |
41 |
<version>7.9.0</version> |
42 |
<relativePath/> |
43 |
</parent> |
44 |
|
45 |
<properties> |
46 |
<notice.project.name>Uberlink</notice.project.name> |
47 |
</properties> |
48 |
|
49 |
<developers> |
50 |
<developer> |
51 |
<name>Tobias Jeger</name> |
52 |
<email>t.jeger[at]onehippo[dot]com</email> |
53 |
<organization>Hippo</organization> |
54 |
<organizationUrl>http://www.onehippo.com</organizationUrl> |
55 |
</developer> |
56 |
<developer> |
57 |
<name>Koen van der Weijden</name> |
58 |
<organization>Hippo</organization> |
59 |
<organizationUrl>http://www.onehippo.com</organizationUrl> |
60 |
</developer> |
61 |
</developers> |
62 |
|
63 |
<scm> |
64 |
<connection>scm:svn:https://forge.onehippo.org/svn/uberlink/uberlink/trunk</connection> |
65 |
<developerConnection>scm:svn:https://forge.onehippo.org/svn/uberlink/uberlink/trunk</developerConnection> |
66 |
<url>http://uberlink.forge.onehippo.org</url> |
67 |
</scm> |
68 |
|
69 |
<distributionManagement> |
70 |
<repository> |
71 |
<id>uberlink-forge-maven-repo</id> |
72 |
<url>svn:https://forge.onehippo.org/svn/uberlink/maven2/</url> |
73 |
</repository> |
74 |
</distributionManagement> |
75 |
|
76 |
<licenses> |
77 |
<license> |
78 |
<name>Apache Software License, Version 2</name> |
79 |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
80 |
<distribution>repo</distribution> |
81 |
</license> |
82 |
</licenses> |
83 |
|
84 |
<repositories> |
85 |
<repository> |
86 |
<id>hippo</id> |
87 |
<name>Hippo maven repository.</name> |
88 |
<url>http://maven.onehippo.com/maven2/</url> |
89 |
<snapshots /> |
90 |
<releases> |
91 |
<updatePolicy>never</updatePolicy> |
92 |
</releases> |
93 |
<layout>default</layout> |
94 |
</repository> |
95 |
<repository> |
96 |
<id>hippo-maven2-forge</id> |
97 |
<name>Hippo Maven 2 Forge repository</name> |
98 |
<url>http://maven.onehippo.com/maven2-forge/</url> |
99 |
<snapshots /> |
100 |
</repository> |
101 |
</repositories> |
102 |
|
103 |
<build> |
104 |
<defaultGoal>package</defaultGoal> |
105 |
<extensions> |
106 |
<extension> |
107 |
<groupId>org.apache.maven.wagon</groupId> |
108 |
<artifactId>wagon-ftp</artifactId> |
109 |
<version>1.0-alpha-6</version> |
110 |
</extension> |
111 |
<extension> |
112 |
<groupId>org.jvnet.wagon-svn</groupId> |
113 |
<artifactId>wagon-svn</artifactId> |
114 |
<version>1.9</version> |
115 |
</extension> |
116 |
</extensions> |
117 |
<pluginManagement> |
118 |
<plugins> |
119 |
<plugin> |
120 |
<groupId>org.apache.maven.plugins</groupId> |
121 |
<artifactId>maven-surefire-plugin</artifactId> |
122 |
<configuration> |
123 |
<forkMode>always</forkMode> |
124 |
<workingDirectory>${project.build.directory}</workingDirectory> |
125 |
</configuration> |
126 |
</plugin> |
127 |
<plugin> |
128 |
<groupId>org.apache.maven.plugins</groupId> |
129 |
<artifactId>maven-archetype-plugin</artifactId> |
130 |
<version>2.0-alpha-4</version> |
131 |
</plugin> |
132 |
</plugins> |
133 |
</pluginManagement> |
134 |
<plugins> |
135 |
<plugin> |
136 |
<groupId>org.apache.maven.plugins</groupId> |
137 |
<artifactId>maven-source-plugin</artifactId> |
138 |
<inherited>true</inherited> |
139 |
<executions> |
140 |
<execution> |
141 |
<id>attach-sources</id> |
142 |
<goals> |
143 |
<goal>jar</goal> |
144 |
</goals> |
145 |
</execution> |
146 |
</executions> |
147 |
</plugin> |
148 |
</plugins> |
149 |
</build> |
150 |
|
151 |
<profiles> |
152 |
<profile> |
153 |
<id>pedantic</id> |
154 |
<build> |
155 |
<plugins> |
156 |
<plugin> |
157 |
<groupId>org.apache.rat</groupId> |
158 |
<artifactId>apache-rat-plugin</artifactId> |
159 |
<inherited>false</inherited> |
160 |
<configuration> |
161 |
<excludes combine.children="append"> |
162 |
<exclude>cms-addon/src/main/resources/**/*.xml</exclude> |
163 |
</excludes> |
164 |
</configuration> |
165 |
</plugin> |
166 |
</plugins> |
167 |
</build> |
168 |
</profile> |
169 |
</profiles> |
170 |
|
171 |
<modules> |
172 |
<module>cms-addon</module> |
173 |
<module>site-addon</module> |
174 |
</modules> |
175 |
|
176 |
<!-- overwrite mailinglist, removing the repository mailing list from inherited --> |
177 |
<mailingLists> |
178 |
<mailingList> |
179 |
<name>Hippo CMS 7 User Forums</name> |
180 |
<subscribe>hippo-cms7-user-join@lists.onehippo.org</subscribe> |
181 |
<unsubscribe>hippo-cms7-user-leave@lists.onehippo.org</unsubscribe> |
182 |
<archive>http://lists.onehippo.org/pipermail/hippo-cms7-user/</archive> |
183 |
</mailingList> |
184 |
</mailingLists> |
185 |
|
186 |
<!-- clear unused elements inherited from hippo-cms7-project pom --> |
187 |
<contributors> |
188 |
<contributor /> |
189 |
</contributors> |
190 |
<ciManagement /> |
191 |
|
192 |
</project> |