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/maven-v4_0_0.xsd "> 5 <modelVersion>4.0.0</modelVersion> 6 <groupId>junit</groupId> 7 <artifactId>junit</artifactId> 8 <version>3.8.1</version> 9 <name>JUnit</name> 10 <url>http://junit.org</url> 11 <description> 12 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. 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 <licenses> 19 <license> 20 <name>Common Public License Version 1.0</name> 21 <url>http://www.opensource.org/licenses/cpl1.0.txt</url> 22 </license> 23 </licenses> 24 <scm> 25 <url>http://junit.cvs.sourceforge.net/junit/</url> 26 </scm> 27 <dependencies> 28 </dependencies> 29 </project> 30