<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>us.fatehi</groupId>
	<artifactId>magnetictrackparser</artifactId>
	<version>1.0</version>
	<packaging>jar</packaging>
	<name>Magnetic Track Parser</name>
	<description>Magnetic Track Parser is a Java 7 library that can parse magnetic tracks from a bank issued card. All classes are immutable and thread-safe. The standard `toString()` function formats data in a readable form. Validity is enforced by JUnit tests. Maven is needed for a build.</description>
	<url>https://github.com/sualeh/magnetictrackparser</url>
	<scm>
		<connection>scm:git:git@github.com:sualeh/magnetictrackparser.git</connection>
		<developerConnection>scm:git:git@github.com:sualeh/magnetictrackparser.git</developerConnection>
		<url>git@github.com:sualeh/magnetictrackparser.git</url>
	</scm>
	<distributionManagement>
		<snapshotRepository>
			<id>sonatype-nexus-snapshots</id>
			<name>Sonatype Nexus Snapshots</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>sonatype-nexus</id>
			<name>Sonatype Nexus</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
		</repository>
	</distributionManagement>
	<licenses>
		<license>
			<name>GNU Lesser General Public License</name>
			<url>http://www.gnu.org/copyleft/lesser.txt</url>
		</license>
	</licenses>
	<developers>
		<developer>
			<name>Sualeh Fatehi</name>
			<id>sfatehi</id>
			<email>sualeh@hotmail.com</email>
			<organization>Sualeh Fatehi</organization>
			<roles>
				<role>All</role>
			</roles>
			<timezone>-5</timezone>
		</developer>
	</developers>
	<organization>
		<name>Sualeh Fatehi</name>
	</organization>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
			<version>3.3.2</version>
		</dependency>
		<dependency>
			<groupId>org.threeten</groupId>
			<artifactId>threetenbp</artifactId>
			<version>0.8.1</version>
		</dependency>
	</dependencies>
	<properties>
		<project.build.sourceEncoding>Cp1252</project.build.sourceEncoding>
		<skip.signing.artifacts>true</skip.signing.artifacts>
	</properties>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>7</source>
					<target>7</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>2.4</version>
				<configuration>
					<archive>
						<index>true</index>
						<manifest>
							<mainClass>us.fatehi.magnetictrack.Main</mainClass>
							<addClasspath>true</addClasspath>
						</manifest>
						<manifestEntries>
							<Specification-Title>${project.name}</Specification-Title>
							<Specification-Version>${project.version}</Specification-Version>
							<Specification-Vendor>Sualeh Fatehi, sualeh@hotmail.com</Specification-Vendor>
							<Implementation-Title>${project.name}</Implementation-Title>
							<Implementation-Version>${project.version}</Implementation-Version>
							<Implementation-Vendor>Sualeh Fatehi, sualeh@hotmail.com</Implementation-Vendor>
						</manifestEntries>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.1.2</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.9.1</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<quiet>true</quiet>
							<show>public</show>
							<detectOfflineLinks>true</detectOfflineLinks>
							<links>
								<link>http://docs.oracle.com/javase/7/docs/api/</link>
							</links>
							<bottom>Copyright &#169; 2014 {organizationName}. All rights
								reserved.</bottom>
							<doctitle>${project.name} ${project.version}</doctitle>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-gpg-plugin</artifactId>
				<version>1.4</version>
				<configuration>
					<useAgent>true</useAgent>
					<skip>${skip.signing.artifacts}</skip>
				</configuration>
				<executions>
					<execution>
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
							<goal>sign</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>