1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2010-2013 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 |
<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 |
<name>HtmlDiff</name> |
21 |
<description>Html diff</description> |
22 |
<groupId>org.hippoecm</groupId> |
23 |
<artifactId>htmldiff</artifactId> |
24 |
<version>1.01.03</version> |
25 |
|
26 |
<inceptionYear>2010</inceptionYear> |
27 |
|
28 |
<issueManagement> |
29 |
<system>JIRA</system> |
30 |
<url>https://issues.onehippo.com/browse/HTMLDIFF</url> |
31 |
</issueManagement> |
32 |
|
33 |
<scm> |
34 |
<connection>scm:svn:http://svn.onehippo.org/repos/hippo/hippo-components/htmldiff/tags/htmldiff-1.01.03</connection> |
35 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-components/htmldiff/tags/htmldiff-1.01.03</developerConnection> |
36 |
<url>http://svn.onehippo.org/repos/hippo/hippo-components/htmldiff/tags/htmldiff-1.01.03</url> |
37 |
</scm> |
38 |
|
39 |
<repositories> |
40 |
<repository> |
41 |
<id>hippo-maven2</id> |
42 |
<name>Hippo Maven 2</name> |
43 |
<url>http://maven.onehippo.com/maven2/</url> |
44 |
<snapshots> |
45 |
<enabled>false</enabled> |
46 |
</snapshots> |
47 |
<releases> |
48 |
<updatePolicy>never</updatePolicy> |
49 |
</releases> |
50 |
</repository> |
51 |
</repositories> |
52 |
|
53 |
<pluginRepositories> |
54 |
<pluginRepository> |
55 |
<id>hippo</id> |
56 |
<name>Hippo maven 2 repository.</name> |
57 |
<url>http://maven.onehippo.com/maven2/</url> |
58 |
<snapshots> |
59 |
<enabled>false</enabled> |
60 |
</snapshots> |
61 |
<releases> |
62 |
<updatePolicy>never</updatePolicy> |
63 |
</releases> |
64 |
<layout>default</layout> |
65 |
</pluginRepository> |
66 |
</pluginRepositories> |
67 |
|
68 |
<distributionManagement> |
69 |
<repository> |
70 |
<name>Hippo Maven 2 Repository</name> |
71 |
<id>hippo-maven2</id> |
72 |
<url>https://maven.onehippo.com/content/repositories/releases/</url> |
73 |
<uniqueVersion>false</uniqueVersion> |
74 |
</repository> |
75 |
<snapshotRepository> |
76 |
<id>hippo-maven2-snapshots</id> |
77 |
<name>Hippo Maven 2 Snapshots Repository</name> |
78 |
<url>https://maven.onehippo.com/content/repositories/snapshots/</url> |
79 |
<uniqueVersion>false</uniqueVersion> |
80 |
</snapshotRepository> |
81 |
</distributionManagement> |
82 |
|
83 |
<properties> |
84 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
85 |
|
86 |
<maven.plugin.rat.version>0.9.RAT125</maven.plugin.rat.version> |
87 |
<maven.plugin.release.version>2.3.2</maven.plugin.release.version> |
88 |
<maven.plugin.remote-resources.version>1.4</maven.plugin.remote-resources.version> |
89 |
|
90 |
<org.slf4j.version>1.5.8</org.slf4j.version> |
91 |
<junit.version>4.4</junit.version> |
92 |
<org.eclipse.core.version>3.3.100-v20070530</org.eclipse.core.version> |
93 |
<nekohtml.version>1.9.13</nekohtml.version> |
94 |
</properties> |
95 |
|
96 |
<dependencies> |
97 |
|
98 |
<dependency> |
99 |
<groupId>net.sourceforge.nekohtml</groupId> |
100 |
<artifactId>nekohtml</artifactId> |
101 |
<version>${nekohtml.version}</version> |
102 |
<type>jar</type> |
103 |
<scope>compile</scope> |
104 |
</dependency> |
105 |
|
106 |
<dependency> |
107 |
<groupId>org.eclipse.equinox</groupId> |
108 |
<artifactId>common</artifactId> |
109 |
<version>3.3.0-v20070426</version> |
110 |
</dependency> |
111 |
|
112 |
<!-- Test --> |
113 |
|
114 |
<dependency> |
115 |
<groupId>org.slf4j</groupId> |
116 |
<artifactId>jcl-over-slf4j</artifactId> |
117 |
<version>${org.slf4j.version}</version> |
118 |
<scope>test</scope> |
119 |
</dependency> |
120 |
|
121 |
<dependency> |
122 |
<groupId>org.slf4j</groupId> |
123 |
<artifactId>slf4j-log4j12</artifactId> |
124 |
<version>${org.slf4j.version}</version> |
125 |
<scope>test</scope> |
126 |
</dependency> |
127 |
|
128 |
<dependency> |
129 |
<groupId>junit</groupId> |
130 |
<artifactId>junit</artifactId> |
131 |
<version>${junit.version}</version> |
132 |
<scope>test</scope> |
133 |
</dependency> |
134 |
|
135 |
</dependencies> |
136 |
|
137 |
<organization> |
138 |
<name>Hippo B.V. (http://www.onehippo.com)</name> |
139 |
<url>http://www.onehippo.com</url> |
140 |
</organization> |
141 |
|
142 |
<build> |
143 |
<defaultGoal>package</defaultGoal> |
144 |
<plugins> |
145 |
<plugin> |
146 |
<groupId>org.apache.maven.plugins</groupId> |
147 |
<artifactId>maven-compiler-plugin</artifactId> |
148 |
<configuration> |
149 |
<source>1.6</source> |
150 |
<target>1.6</target> |
151 |
</configuration> |
152 |
</plugin> |
153 |
<plugin> |
154 |
<inherited>true</inherited> |
155 |
<groupId>org.apache.maven.plugins</groupId> |
156 |
<artifactId>maven-source-plugin</artifactId> |
157 |
<executions> |
158 |
<execution> |
159 |
<id>attach-sources</id> |
160 |
<goals> |
161 |
<goal>jar</goal> |
162 |
</goals> |
163 |
</execution> |
164 |
</executions> |
165 |
</plugin> |
166 |
<plugin> |
167 |
<groupId>org.apache.maven.plugins</groupId> |
168 |
<artifactId>maven-release-plugin</artifactId> |
169 |
<version>${maven.plugin.release.version}</version> |
170 |
</plugin> |
171 |
<plugin> |
172 |
<groupId>org.apache.maven.plugins</groupId> |
173 |
<artifactId>maven-remote-resources-plugin</artifactId> |
174 |
<version>${maven.plugin.remote-resources.version}</version> |
175 |
<inherited>true</inherited> |
176 |
<executions> |
177 |
<execution> |
178 |
<goals> |
179 |
<goal>process</goal> |
180 |
</goals> |
181 |
<configuration> |
182 |
<resourceBundles> |
183 |
<resourceBundle>org.onehippo.cms7:hippo-cms7-legal-resources:1</resourceBundle> |
184 |
</resourceBundles> |
185 |
</configuration> |
186 |
</execution> |
187 |
</executions> |
188 |
</plugin> |
189 |
</plugins> |
190 |
<extensions> |
191 |
<extension> |
192 |
<groupId>org.apache.maven.wagon</groupId> |
193 |
<artifactId>wagon-ftp</artifactId> |
194 |
<version>1.0-beta-6</version> |
195 |
</extension> |
196 |
</extensions> |
197 |
<resources> |
198 |
<resource> |
199 |
<filtering>false</filtering> |
200 |
<directory>${basedir}/src/main/java</directory> |
201 |
<includes> |
202 |
<include>**/*.xsl</include> |
203 |
<include>**/*.properties</include> |
204 |
</includes> |
205 |
</resource> |
206 |
</resources> |
207 |
</build> |
208 |
|
209 |
<profiles> |
210 |
<profile> |
211 |
<id>jrebel</id> |
212 |
<build> |
213 |
<plugins> |
214 |
<plugin> |
215 |
<inherited>true</inherited> |
216 |
<groupId>org.zeroturnaround</groupId> |
217 |
<artifactId>javarebel-maven-plugin</artifactId> |
218 |
<executions> |
219 |
<execution> |
220 |
<id>generate-rebel-xml</id> |
221 |
<phase>process-resources</phase> |
222 |
<goals> |
223 |
<goal>generate</goal> |
224 |
</goals> |
225 |
</execution> |
226 |
</executions> |
227 |
</plugin> |
228 |
</plugins> |
229 |
</build> |
230 |
</profile> |
231 |
<profile> |
232 |
<id>pedantic</id> |
233 |
<build> |
234 |
<plugins> |
235 |
<plugin> |
236 |
<groupId>org.apache.rat</groupId> |
237 |
<artifactId>apache-rat-plugin</artifactId> |
238 |
<version>${maven.plugin.rat.version}</version> |
239 |
<executions> |
240 |
<execution> |
241 |
<phase>validate</phase> |
242 |
<goals> |
243 |
<goal>check</goal> |
244 |
</goals> |
245 |
</execution> |
246 |
</executions> |
247 |
<configuration> |
248 |
<addDefaultLicenseMatchers>false</addDefaultLicenseMatchers> |
249 |
<excludeSubProjects>false</excludeSubProjects> |
250 |
<licenses> |
251 |
<license implementation="org.apache.rat.analysis.license.AppliedApacheSoftwareLicense20"> |
252 |
<copyrightOwner>Hippo B\.V\. \(http://www\.onehippo\.com\)</copyrightOwner> |
253 |
</license> |
254 |
</licenses> |
255 |
<excludes> |
256 |
<!-- exclude external sources --> |
257 |
<exclude>src/main/java/org/outerj/**</exclude> |
258 |
<exclude>src/main/java/org/eclipse/**</exclude> |
259 |
</excludes> |
260 |
</configuration> |
261 |
</plugin> |
262 |
</plugins> |
263 |
</build> |
264 |
</profile> |
265 |
|
266 |
</profiles> |
267 |
</project> |