blob: 304f64237c53346f0f0d9def3a487fd5f9a8135c [file] [log] [blame]
Jonathan Hedleye23559f2009-12-19 17:47:15 +11001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Jonathan Hedley2bc42052009-12-19 17:55:04 +11005 <modelVersion>4.0.0</modelVersion>
6 <name>jsoup</name>
Jonathan Hedleye23559f2009-12-19 17:47:15 +11007
Jonathan Hedley458b9902010-01-13 16:49:43 +11008 <groupId>org.jsoup</groupId>
Jonathan Hedley2bc42052009-12-19 17:55:04 +11009 <artifactId>jsoup</artifactId>
Jonathan Hedley458b9902010-01-13 16:49:43 +110010 <version>1.0-SNAPSHOT</version>
11 <description>Jsoup HTML parser</description>
12 <url>http://jsoup.org/</url>
13 <inceptionYear>2009</inceptionYear>
14 <issueManagement>
15 <system>GitHub</system>
16 <url>http://github.com/jhy/jsoup/issues</url>
17 </issueManagement>
18 <licenses>
19 <license>
20 <name>The MIT License</name>
21 <url>http://jsoup.com/license</url><!-- TODO -->
22 <distribution>repo</distribution>
23 </license>
24 </licenses>
25 <scm>
26 <url>http://github.com/jhy/jsoup</url>
27 </scm>
28 <organization>
29 <name>Jonathan Hedley</name>
30 <url>http://jonathanhedley.com/</url>
31 </organization>
Jonathan Hedleye23559f2009-12-19 17:47:15 +110032
Jonathan Hedley2bc42052009-12-19 17:55:04 +110033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <version>2.0.2</version>
39 <configuration>
40 <source>1.5</source>
41 <target>1.5</target>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46
47 <dependencies>
48
49 <dependency>
50 <!-- junit -->
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <version>4.5</version>
54 <scope>test</scope>
55 </dependency>
Jonathan Hedley548ce132009-12-21 18:51:58 +110056
57 <dependency>
58 <!-- Commons Lang, for method argument validation. -->
59 <groupId>commons-lang</groupId>
60 <artifactId>commons-lang</artifactId>
61 <version>2.4</version>
62 </dependency>
Jonathan Hedley2bc42052009-12-19 17:55:04 +110063 </dependencies>
Jonathan Hedley458b9902010-01-13 16:49:43 +110064 <dependencyManagement>
65 <dependencies>
66 </dependencies>
67 </dependencyManagement>
Jonathan Hedley2bc42052009-12-19 17:55:04 +110068
Jonathan Hedleye23559f2009-12-19 17:47:15 +110069</project>