<?xml version="1.0"?>
<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<groupId>gov.nist.math</groupId>
	<artifactId>Jampack</artifactId>
	<version>1.0</version>

	<name>${project.artifactId}</name>
	<description>A Java Matrix Package</description>
	<url>ftp://math.nist.gov/pub/Jampack/Jampack/AboutJampack.html</url>

	<licenses>
		<license>
			<name>Public Domain</name>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>G. W. Stewart</name>
			<email>stewart@cs.umd.edu</email>
			<url>http://www.cs.umd.edu/~stewart/</url>
		</developer>
	</developers>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>verify</phase>
						<goals>
							<goal>jar-no-fork</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<phase>verify</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

</project>
