1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd "> 4 <modelVersion>4.0.0</modelVersion> 5 <groupId>junit</groupId> 6 <artifactId>junit-dep</artifactId> 7 <version>4.10</version> 8 <name>JUnit</name> 9 <url>http://junit.org</url> 10 <description> 11 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. 12 It is used by the developer who implements unit tests in Java. 13 </description> 14 <organization> 15 <name>JUnit</name> 16 <url>http://www.junit.org</url> 17 </organization> 18 <mailingLists> 19 <mailingList> 20 <name>JUnit Mailing List</name> 21 <post>junit (a] yahoogroups.com</post> 22 <archive> 23 http://tech.groups.yahoo.com/group/junit/ 24 </archive> 25 </mailingList> 26 </mailingLists> 27 <licenses> 28 <license> 29 <name>Common Public License Version 1.0</name> 30 <url>http://www.opensource.org/licenses/cpl1.0.txt</url> 31 </license> 32 </licenses> 33 <scm> 34 <connection>scm:git:git://github.com/KentBeck/junit.git</connection> 35 <developerConnection>scm:git:git (a] github.com:KentBeck/junit.git</developerConnection> 36 <url>http://github.com/KentBeck/junit/tree/master</url> 37 </scm> 38 <developers> 39 <developer> 40 <id>dsaff</id> 41 <name>David Saff</name> 42 <email>david (a] saff.net</email> 43 </developer> 44 </developers> 45 <build> 46 <plugins> 47 <plugin> 48 <artifactId>maven-compiler-plugin</artifactId> 49 <configuration> 50 <encoding>ISO-8859-1</encoding> 51 <source>${jdk.version}</source> 52 <target>${jdk.version}</target> 53 </configuration> 54 </plugin> 55 </plugins> 56 </build> 57 <dependencies> 58 <dependency> 59 <groupId>org.hamcrest</groupId> 60 <artifactId>hamcrest-core</artifactId> 61 <version>1.1</version> 62 <scope>compile</scope> 63 </dependency> 64 </dependencies> 65 66 <properties> 67 <jdk.version>1.5</jdk.version> 68 </properties> 69 </project>