1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2008-2015 Hippo B.V. (http://www.onehippo.com) |
4 |
|
5 |
Licensed under the Apache License, Version |
6 |
2.0 (the "License"); you may not use this file except in compliance |
7 |
with the License. You may obtain a copy of the License at |
8 |
|
9 |
http://www.apache.org/licenses/LICENSE-2.0 Unless required by |
10 |
applicable law or agreed to in writing, software distributed under the |
11 |
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
12 |
CONDITIONS OF ANY KIND, either express or implied. See the License for |
13 |
the specific language governing permissions and limitations under the |
14 |
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>org.onehippo.cms7</groupId> |
21 |
<artifactId>hippo-cms7-project</artifactId> |
22 |
<version>28-SNAPSHOT</version> |
23 |
</parent> |
24 |
|
25 |
<name>Hippo Plugin Content Tagging</name> |
26 |
<description>Hippo Plugin to assign tags to a document with auto suggestions. Includes a tagcloud that can added to |
27 |
the document browser. |
28 |
</description> |
29 |
<groupId>org.onehippo.cms7</groupId> |
30 |
<artifactId>hippo-plugin-content-tagging</artifactId> |
31 |
<version>6.0.0-SNAPSHOT</version> |
32 |
|
33 |
<inceptionYear>2008</inceptionYear> |
34 |
|
35 |
<scm> |
36 |
<connection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/content-tagging/trunk/</connection> |
37 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/content-tagging/trunk/</developerConnection> |
38 |
<url>https://svn.onehippo.org/repos/hippo/hippo-cms7/plugins/content-tagging/trunk/</url> |
39 |
</scm> |
40 |
|
41 |
<properties> |
42 |
<hippo.repository.version>4.0.0-SNAPSHOT</hippo.repository.version> |
43 |
<hippo.cms.version>4.0.0-SNAPSHOT</hippo.cms.version> |
44 |
|
45 |
<lib.json.version>2.2.2</lib.json.version> |
46 |
<lib.junit.version>4.8.2</lib.junit.version> |
47 |
</properties> |
48 |
|
49 |
<repositories> |
50 |
<repository> |
51 |
<id>hippo</id> |
52 |
<name>Hippo Maven 2</name> |
53 |
<url>https://maven.onehippo.com/maven2/</url> |
54 |
<snapshots> |
55 |
<enabled>false</enabled> |
56 |
</snapshots> |
57 |
<releases> |
58 |
<updatePolicy>never</updatePolicy> |
59 |
</releases> |
60 |
</repository> |
61 |
</repositories> |
62 |
|
63 |
<issueManagement> |
64 |
<system>Jira Hippo Plugins</system> |
65 |
<url>https://issues.onehippo.com/browse/HIPPLUG/component/12140</url> |
66 |
</issueManagement> |
67 |
|
68 |
<dependencies> |
69 |
|
70 |
<!--[WARNING] net.sf.json-lib:json-lib:jar:jdk15:2.2.2:provided--> |
71 |
|
72 |
<dependency> |
73 |
<groupId>net.sf.json-lib</groupId> |
74 |
<artifactId>json-lib</artifactId> |
75 |
<classifier>jdk15</classifier> |
76 |
<version>${lib.json.version}</version> |
77 |
<scope>provided</scope> |
78 |
</dependency> |
79 |
|
80 |
<dependency> |
81 |
<groupId>org.onehippo.cms7</groupId> |
82 |
<artifactId>hippo-cms-engine</artifactId> |
83 |
<version>${hippo.cms.version}</version> |
84 |
<scope>provided</scope> |
85 |
</dependency> |
86 |
<dependency> |
87 |
<groupId>org.onehippo.cms7</groupId> |
88 |
<artifactId>hippo-repository-api</artifactId> |
89 |
<version>${hippo.repository.version}</version> |
90 |
<scope>provided</scope> |
91 |
</dependency> |
92 |
<dependency> |
93 |
<groupId>org.onehippo.cms7</groupId> |
94 |
<artifactId>hippo-cms-api</artifactId> |
95 |
<version>${hippo.cms.version}</version> |
96 |
<scope>provided</scope> |
97 |
</dependency> |
98 |
<!-- test --> |
99 |
<dependency> |
100 |
<groupId>org.onehippo.cms7</groupId> |
101 |
<artifactId>hippo-repository-engine</artifactId> |
102 |
<version>${hippo.repository.version}</version> |
103 |
<scope>test</scope> |
104 |
</dependency> |
105 |
<dependency> |
106 |
<groupId>org.onehippo.cms7</groupId> |
107 |
<artifactId>hippo-repository-config</artifactId> |
108 |
<version>${hippo.repository.version}</version> |
109 |
<scope>test</scope> |
110 |
</dependency> |
111 |
<dependency> |
112 |
<groupId>org.onehippo.cms7</groupId> |
113 |
<artifactId>hippo-repository-testutils</artifactId> |
114 |
<version>${hippo.repository.version}</version> |
115 |
<scope>test</scope> |
116 |
</dependency> |
117 |
<dependency> |
118 |
<groupId>org.onehippo.cms7</groupId> |
119 |
<artifactId>hippo-cms-test</artifactId> |
120 |
<version>${hippo.cms.version}</version> |
121 |
<scope>test</scope> |
122 |
</dependency> |
123 |
<dependency> |
124 |
<groupId>junit</groupId> |
125 |
<artifactId>junit</artifactId> |
126 |
<version>${lib.junit.version}</version> |
127 |
<scope>test</scope> |
128 |
</dependency> |
129 |
</dependencies> |
130 |
|
131 |
<build> |
132 |
<defaultGoal>package</defaultGoal> |
133 |
<resources> |
134 |
<resource> |
135 |
<filtering>false</filtering> |
136 |
<directory>${basedir}/src/main/java</directory> |
137 |
<includes> |
138 |
<include>**/*.html</include> |
139 |
<include>**/*.css</include> |
140 |
<include>**/*.png</include> |
141 |
<include>**/*.gif</include> |
142 |
<include>**/*.js</include> |
143 |
<include>**/*.properties</include> |
144 |
</includes> |
145 |
</resource> |
146 |
<resource> |
147 |
<filtering>false</filtering> |
148 |
<directory>${basedir}/src/main/resources</directory> |
149 |
<includes> |
150 |
<include>**/*.cnd</include> |
151 |
<include>**/*.xml</include> |
152 |
</includes> |
153 |
</resource> |
154 |
</resources> |
155 |
</build> |
156 |
|
157 |
<profiles> |
158 |
<profile> |
159 |
<id>pedantic</id> |
160 |
<build> |
161 |
<plugins> |
162 |
<plugin> |
163 |
<groupId>org.apache.rat</groupId> |
164 |
<artifactId>apache-rat-plugin</artifactId> |
165 |
<inherited>false</inherited> |
166 |
<configuration> |
167 |
<excludes combine.children="append"> |
168 |
<!-- repository content XML --> |
169 |
<exclude>src/main/resources/*.xml</exclude> |
170 |
</excludes> |
171 |
</configuration> |
172 |
</plugin> |
173 |
</plugins> |
174 |
</build> |
175 |
</profile> |
176 |
</profiles> |
177 |
|
178 |
</project> |