<?xml version="1.0" encoding="UTF-8"?>
<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>

	<name>AIMA-Java Core</name>
	<version>3.0.0</version>
	<groupId>com.googlecode.aima-java</groupId>
	<artifactId>aima-core</artifactId>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<packaging>jar</packaging>
	<description>AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.</description>
	<url>https://github.com/aimacode/aima-java/</url>
	<licenses>
		<license>
			<name>MIT License</name>
			<url>http://opensource.org/licenses/mit-license.php</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<url>https://github.com/aimacode/aima-java/tree/AIMA3e/aima-core</url>
		<connection>scm:git:https://github.com/aimacode/aima-java/tree/AIMA3e/aima-core</connection>
		<developerConnection>scm:git:https://github.com/aimacode/aima-java/tree/AIMA3e/aima-core</developerConnection>
	</scm>
	<developers>
		<developer>
			<id>ctjoreilly</id>
			<name>Ciaran O'Reilly</name>
			<email>ctjoreilly@gmail.com</email>
		</developer>
		<developer>
			<id>ruediger.lunde</id>
			<name>Ruediger Lunde</name>
			<email>Ruediger.Lunde@gmail.com</email>
		</developer>
	</developers>

	<properties>
		<target.jdk.version>1.8</target.jdk.version>
		<targetJdk>1.8</targetJdk>
		<junit.version>4.11</junit.version>
		<!-- So the plain text output files generated by the maven-surefire-plugin 
			are platform independent. -->
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<dependencies>
		<!-- Internal Dependencies -->
		<!-- Compile Dependencies -->
		<!-- Testing Dependencies -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<!-- Runtime Dependencies -->
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<fork>true</fork>
					<source>${target.jdk.version}</source>
					<target>${target.jdk.version}</target>
					<debug>true</debug>
					<encoding>${project.build.sourceEncoding}</encoding>
					<showDeprecation>true</showDeprecation>
					<showWarnings>true</showWarnings>
					<compilerArgument>-Xlint:all</compilerArgument>
				</configuration>
			</plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-javadoc-plugin</artifactId>
                                <version>2.9.1</version>
                                <configuration>
                                        <failOnError>false</failOnError>
                                        <additionalparam>-Xdoclint:none</additionalparam>
                                </configuration>
                        </plugin>
		</plugins>
	</build>
</project>
