1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<!-- |
3 |
Copyright 2008-2009 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/3.0.0" |
18 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
19 |
xsi:schemaLocation="http://maven.apache.org/POM/3.0.0 http://maven.apache.org/maven-v3_0_0.xsd"> |
20 |
<artifactId>htmlcleaner</artifactId> |
21 |
<groupId>hippo</groupId> |
22 |
<name>HTML Cleaner</name> |
23 |
<description>HTML Cleaner</description> |
24 |
<package>nl.hippo.htmlcleaner</package> |
25 |
<currentVersion>1.01.06-dev</currentVersion> |
26 |
|
27 |
<dependencies> |
28 |
<dependency> |
29 |
<groupId>net.sourceforge.nekohtml</groupId> |
30 |
<artifactId>nekohtml</artifactId> |
31 |
<version>1.9.7</version> |
32 |
</dependency> |
33 |
<dependency> |
34 |
<groupId>nekodtd</groupId> |
35 |
<artifactId>nekodtd</artifactId> |
36 |
<version>0.1.11</version> |
37 |
</dependency> |
38 |
<dependency> |
39 |
<groupId>org.outerj.daisy</groupId> |
40 |
<artifactId>daisy-util</artifactId> |
41 |
<version>1.4.1</version> |
42 |
</dependency> |
43 |
<dependency> |
44 |
<groupId>xerces</groupId> |
45 |
<artifactId>xercesImpl</artifactId> |
46 |
<version>2.6.2</version> |
47 |
</dependency> |
48 |
<dependency> |
49 |
<groupId>xerces</groupId> |
50 |
<artifactId>xmlParserAPIs</artifactId> |
51 |
<version>2.2.1</version> |
52 |
</dependency> |
53 |
|
54 |
<dependency> |
55 |
<id>commons-lang</id> |
56 |
<version>2.1</version> |
57 |
</dependency> |
58 |
<dependency> |
59 |
<id>jakarta-regexp:jakarta-regexp</id> |
60 |
<version>1.4</version> |
61 |
</dependency> |
62 |
</dependencies> |
63 |
|
64 |
<!-- build information for the project --> |
65 |
<build> |
66 |
<sourceDirectory>src/main/java</sourceDirectory> |
67 |
|
68 |
<resources> |
69 |
<resource> |
70 |
<directory>${basedir}/src/main/java/nl/hippo/htmlcleaner</directory> |
71 |
<targetPath>nl/hippo/htmlcleaner</targetPath> |
72 |
<includes> |
73 |
<include>xhtml1-strict.dtd</include> |
74 |
<include>xhtml1-transitional.dtd</include> |
75 |
<include>xhtml-special.ent</include> |
76 |
<include>xhtml-symbol.ent</include> |
77 |
<include>xhtml-lat1.ent</include> |
78 |
</includes> |
79 |
</resource> |
80 |
</resources> |
81 |
</build> |
82 |
|
83 |
</project> |