Jonathan Hedley | e23559f | 2009-12-19 17:47:15 +1100 | [diff] [blame] | 1 | <?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 Hedley | 2bc4205 | 2009-12-19 17:55:04 +1100 | [diff] [blame] | 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <name>jsoup</name> |
Jonathan Hedley | e23559f | 2009-12-19 17:47:15 +1100 | [diff] [blame] | 7 | |
Jonathan Hedley | 458b990 | 2010-01-13 16:49:43 +1100 | [diff] [blame^] | 8 | <groupId>org.jsoup</groupId> |
Jonathan Hedley | 2bc4205 | 2009-12-19 17:55:04 +1100 | [diff] [blame] | 9 | <artifactId>jsoup</artifactId> |
Jonathan Hedley | 458b990 | 2010-01-13 16:49:43 +1100 | [diff] [blame^] | 10 | <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 Hedley | e23559f | 2009-12-19 17:47:15 +1100 | [diff] [blame] | 32 | |
Jonathan Hedley | 2bc4205 | 2009-12-19 17:55:04 +1100 | [diff] [blame] | 33 | <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 Hedley | 548ce13 | 2009-12-21 18:51:58 +1100 | [diff] [blame] | 56 | |
| 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 Hedley | 2bc4205 | 2009-12-19 17:55:04 +1100 | [diff] [blame] | 63 | </dependencies> |
Jonathan Hedley | 458b990 | 2010-01-13 16:49:43 +1100 | [diff] [blame^] | 64 | <dependencyManagement> |
| 65 | <dependencies> |
| 66 | </dependencies> |
| 67 | </dependencyManagement> |
Jonathan Hedley | 2bc4205 | 2009-12-19 17:55:04 +1100 | [diff] [blame] | 68 | |
Jonathan Hedley | e23559f | 2009-12-19 17:47:15 +1100 | [diff] [blame] | 69 | </project> |