<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<groupId>com.bmsi</groupId>
	<artifactId>gnudiff</artifactId>
	<version>1.7</version>
	<packaging>jar</packaging>
	<name>GNU Diff for Java</name>
	<description>
		A translation of the GNU Diff algorithm to a Java class. The Diff class computes the differences 
		between two Object arrays as a list of changes. This is very general purpose. Any of the options 
	 	to GNU diff can be efficiently implemented as variations on how Object.equals() is implemented 
		and how the change list is printed.
	</description>
	<inceptionYear>2000</inceptionYear>
	<url>http://www.bmsi.com/java/#diff</url>
	<licenses>
		<license>
			<name>GNU GENERAL PUBLIC LICENSE</name>
			<url></url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<url>http://www.bmsi.com/java/#diff</url>
		<connection>http://www.bmsi.com/java/#diff</connection>
	</scm>
	<developers>
		<developer>
			<name>Stuart Gathman</name>
			<url>http://gathman.org/vitae/</url>
		</developer>
	</developers>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.2</version>
		</dependency>
	</dependencies>
</project>


