4b435d3
4b435d3
4b435d3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd ">
4b435d3
    <modelVersion>4.0.0</modelVersion>
4b435d3
    <groupId>junit</groupId>
4b435d3
    <artifactId>junit</artifactId>
4b435d3
    <version>4.10</version>
4b435d3
    <name>JUnit</name>
4b435d3
    <url>http://junit.org</url>
4b435d3
    <description>
4b435d3
        JUnit is a regression testing framework written by Erich Gamma and Kent Beck.
4b435d3
        It is used by the developer who implements unit tests in Java.
4b435d3
    </description>
4b435d3
    <organization>
4b435d3
        <name>JUnit</name>
4b435d3
        <url>http://www.junit.org</url>
4b435d3
    </organization>
4b435d3
    <mailingLists>
4b435d3
        <mailingList>
4b435d3
            <name>JUnit Mailing List</name>
4b435d3
            <post>junit@yahoogroups.com</post>
4b435d3
            <archive>
4b435d3
                http://tech.groups.yahoo.com/group/junit/
4b435d3
            </archive>
4b435d3
        </mailingList>
4b435d3
    </mailingLists>
4b435d3
    <licenses>
4b435d3
        <license>
4b435d3
            <name>Common Public License Version 1.0</name>
4b435d3
            <url>http://www.opensource.org/licenses/cpl1.0.txt</url>
4b435d3
        </license>
4b435d3
    </licenses>
4b435d3
    <scm>
4b435d3
        <connection>scm:git:git://github.com/KentBeck/junit.git</connection>
4b435d3
        <developerConnection>scm:git:git@github.com:KentBeck/junit.git</developerConnection>
4b435d3
        <url>http://github.com/KentBeck/junit/tree/master</url>
4b435d3
    </scm>
4b435d3
    <developers>
4b435d3
      <developer>
4b435d3
        <id>dsaff</id>
4b435d3
        <name>David Saff</name>
4b435d3
        <email>david@saff.net</email>
4b435d3
      </developer>
4b435d3
    </developers>
4b435d3
    <build>
4b435d3
        <plugins>
4b435d3
            <plugin>
4b435d3
                <artifactId>maven-compiler-plugin</artifactId>
4b435d3
                <configuration>
4b435d3
                    <encoding>ISO-8859-1</encoding>
4b435d3
                    <source>${jdk.version}</source>
4b435d3
                    <target>${jdk.version}</target>
4b435d3
                </configuration>
4b435d3
            </plugin>
4b435d3
        </plugins>
4b435d3
    </build>
4b435d3
    <dependencies>
4b435d3
        <dependency>
4b435d3
          <groupId>org.hamcrest</groupId>
4b435d3
          <artifactId>hamcrest-core</artifactId>
4b435d3
          <version>1.1</version>
4b435d3
          <scope>compile</scope>
4b435d3
        </dependency>
4b435d3
    </dependencies>
4b435d3
4b435d3
    <properties>
4b435d3
         <jdk.version>1.5</jdk.version>
4b435d3
    </properties>
4b435d3
</project>