<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>
	<parent>
		<groupId>cf.janga</groupId>
		<artifactId>janga-maven-root</artifactId>
		<version>0.0.1</version>
	</parent>
	<artifactId>hook</artifactId>
	<version>0.0.1</version>
	<name>hook</name>
	<description>Java Plugin Framework</description>
	<url>https://github.com/jangasoft/hook</url>
	<licenses>
		<license>
			<name>Eclipse Public License v1.0</name>
			<distribution>repo</distribution>
			<url>http://www.eclipse.org/org/documents/epl-v10.html</url>
		</license>
	</licenses>
	<developers>
		<developer>
			<id>emersonloureiro</id>
			<name>Emerson Loureiro</name>
			<email>emerson.loureiro@gmail.com</email>
		</developer>
	</developers>
	<scm>
		<connection>scm:git:git@github.com:jangasoft/hook.git</connection>
		<developerConnection>scm:git:git@github.com:jangasoft/hook.git</developerConnection>
		<url>git@github.com:jangasoft/hook.git</url>
	</scm>
	<properties>
		<commons-collections-version>3.2.1</commons-collections-version>
		<commons-lang-version>3.1</commons-lang-version>
		<junit-version>4.11</junit-version>
		<guava-version>16.0.1</guava-version>
	</properties>
	<dependencies>
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>${guava-version}</version>
		</dependency>
		<dependency>
			<groupId>commons-collections</groupId>
			<artifactId>commons-collections</artifactId>
			<version>${commons-collections-version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
			<version>${commons-lang-version}</version>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit-version}</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
