1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2008-2010 Hippo (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>Htmlcleaner</name> |
21 |
<description>Html</description> |
22 |
<groupId>hippo</groupId> |
23 |
<artifactId>htmlcleaner</artifactId> |
24 |
<version>1.02.07-SNAPSHOT</version> |
25 |
|
26 |
<issueManagement> |
27 |
<system>JIRA</system> |
28 |
<url>https://issues.onehippo.com/browse/HTMLCLEANER</url> |
29 |
</issueManagement> |
30 |
|
31 |
<scm> |
32 |
<connection>scm:svn:http://svn.onehippo.org/repos/hippo/hippo-components/htmlcleaner/trunk</connection> |
33 |
<developerConnection>scm:svn:https://svn.onehippo.org/repos/hippo/hippo-components/htmlcleaner/trunk</developerConnection> |
34 |
<url>http://svn.onehippo.org/repos/hippo/hippo-components/htmlcleaner/trunk</url> |
35 |
</scm> |
36 |
|
37 |
<distributionManagement> |
38 |
<repository> |
39 |
<name>Hippo Maven 2 Repository</name> |
40 |
<id>hippo-maven2</id> |
41 |
<url>https://maven.onehippo.com/content/repositories/releases/</url> |
42 |
<uniqueVersion>false</uniqueVersion> |
43 |
</repository> |
44 |
</distributionManagement> |
45 |
|
46 |
<dependencies> |
47 |
|
48 |
<dependency> |
49 |
<groupId>org.slf4j</groupId> |
50 |
<artifactId>slf4j-api</artifactId> |
51 |
<version>1.6.1</version> |
52 |
<scope>provided</scope> |
53 |
</dependency> |
54 |
|
55 |
<dependency> |
56 |
<groupId>org.slf4j</groupId> |
57 |
<artifactId>slf4j-log4j12</artifactId> |
58 |
<version>1.6.1</version> |
59 |
<scope>test</scope> |
60 |
</dependency> |
61 |
|
62 |
<dependency> |
63 |
<groupId>nekohtml</groupId> |
64 |
<artifactId>nekodtd</artifactId> |
65 |
<version>0.1.11</version> |
66 |
</dependency> |
67 |
|
68 |
<dependency> |
69 |
<groupId>org.outerj.daisy</groupId> |
70 |
<artifactId>daisy-util</artifactId> |
71 |
<version>1.4.1</version> |
72 |
</dependency> |
73 |
<dependency> |
74 |
<groupId>xerces</groupId> |
75 |
<artifactId>xercesImpl</artifactId> |
76 |
<version>2.8.1</version> |
77 |
<scope>provided</scope> |
78 |
</dependency> |
79 |
<dependency> |
80 |
<groupId>commons-lang</groupId> |
81 |
<artifactId>commons-lang</artifactId> |
82 |
<version>2.1</version> |
83 |
</dependency> |
84 |
<dependency> |
85 |
<groupId>jakarta-regexp</groupId> |
86 |
<artifactId>jakarta-regexp</artifactId> |
87 |
<version>1.4</version> |
88 |
</dependency> |
89 |
<dependency> |
90 |
<groupId>net.sourceforge.nekohtml</groupId> |
91 |
<artifactId>nekohtml</artifactId> |
92 |
<version>1.9.13</version> |
93 |
<type>jar</type> |
94 |
<scope>compile</scope> |
95 |
</dependency> |
96 |
<dependency> |
97 |
<groupId>xml-apis</groupId> |
98 |
<artifactId>xml-apis</artifactId> |
99 |
<version>1.0.b2</version> |
100 |
<type>jar</type> |
101 |
<scope>provided</scope> |
102 |
</dependency> |
103 |
|
104 |
<dependency> |
105 |
<groupId>junit</groupId> |
106 |
<artifactId>junit</artifactId> |
107 |
<version>4.5</version> |
108 |
<scope>test</scope> |
109 |
</dependency> |
110 |
|
111 |
</dependencies> |
112 |
|
113 |
<organization> |
114 |
<name>onehippo</name> |
115 |
<url>http://www.onehippo.com</url> |
116 |
</organization> |
117 |
|
118 |
<build> |
119 |
<defaultGoal>package</defaultGoal> |
120 |
<plugins> |
121 |
<plugin> |
122 |
<groupId>org.apache.maven.plugins</groupId> |
123 |
<artifactId>maven-compiler-plugin</artifactId> |
124 |
<configuration> |
125 |
<source>1.5</source> |
126 |
<target>1.5</target> |
127 |
</configuration> |
128 |
</plugin> |
129 |
<plugin> |
130 |
<inherited>true</inherited> |
131 |
<groupId>org.apache.maven.plugins</groupId> |
132 |
<artifactId>maven-source-plugin</artifactId> |
133 |
<executions> |
134 |
<execution> |
135 |
<id>attach-sources</id> |
136 |
<goals> |
137 |
<goal>jar</goal> |
138 |
</goals> |
139 |
</execution> |
140 |
</executions> |
141 |
</plugin> |
142 |
<plugin> |
143 |
<groupId>org.apache.maven.plugins</groupId> |
144 |
<artifactId>maven-release-plugin</artifactId> |
145 |
<version>2.0</version> |
146 |
</plugin> |
147 |
</plugins> |
148 |
<extensions> |
149 |
<extension> |
150 |
<groupId>org.apache.maven.wagon</groupId> |
151 |
<artifactId>wagon-ftp</artifactId> |
152 |
<version>1.0-beta-6</version> |
153 |
</extension> |
154 |
</extensions> |
155 |
<resources> |
156 |
<resource> |
157 |
<filtering>false</filtering> |
158 |
<directory>${basedir}/src/main/java</directory> |
159 |
<includes> |
160 |
<include>**/*.ent</include> |
161 |
<include>**/*.dtd</include> |
162 |
</includes> |
163 |
</resource> |
164 |
</resources> |
165 |
</build> |
166 |
|
167 |
<profiles> |
168 |
<profile> |
169 |
<id>jrebel</id> |
170 |
<build> |
171 |
<plugins> |
172 |
<plugin> |
173 |
<inherited>true</inherited> |
174 |
<groupId>org.zeroturnaround</groupId> |
175 |
<artifactId>javarebel-maven-plugin</artifactId> |
176 |
<executions> |
177 |
<execution> |
178 |
<id>generate-rebel-xml</id> |
179 |
<phase>process-resources</phase> |
180 |
<goals> |
181 |
<goal>generate</goal> |
182 |
</goals> |
183 |
</execution> |
184 |
</executions> |
185 |
</plugin> |
186 |
</plugins> |
187 |
</build> |
188 |
</profile> |
189 |
|
190 |
</profiles> |
191 |
</project> |