<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>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>5</version>
	</parent>

	<groupId>com.datastax.wikitext</groupId>
	<artifactId>wikitext-core-ant</artifactId>
	<version>1.3</version>
	<packaging>jar</packaging>

	<name>wikitext-core-ant</name>
	<description>A repackaging of just the ant tasks from org.fusesource.wikitext</description>
	<url>https://github.com/riptano/wikitext-core-ant</url>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<log4j-version>1.2.8</log4j-version>
		<junit-version>4.8.1</junit-version>
		<wikitext-core-version>1.3</wikitext-core-version>
		<apache-ant-version>1.8.1</apache-ant-version>
	</properties>

	<scm>
		<connection>scm:git:git://github.com/riptano/wikitext-core-ant.git</connection>
		<developerConnection>scm:git:git@github.com:riptano/wikitext-core-ant.git</developerConnection>
		<url>http://github.com/riptano/wikitext-core-ant/tree/master</url>
	</scm>

	<licenses>
		<license>
			<name>Eclipse Public License v1.0</name>
			<url>http://www.eclipse.org/org/documents/epl-v10.html</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<issueManagement>
		<system>github</system>
		<url>http://github.com/riptano/wikitext-core-ant/issues</url>
	</issueManagement>

	<distributionManagement>
		<site>
			<id>github.com</id>
			<url>gitsite:git@github.com/riptano/wikitext-core-ant.git</url>
		</site>
	</distributionManagement>
	
	<developers>
		<developer>
			<name>Nate McCall</name>
			<id>zznate</id>
			<email>nate@datastax.com</email>
		</developer>
	</developers>	

	<dependencies>
		<dependency>
			<groupId>org.apache.ant</groupId>
			<artifactId>ant</artifactId>
			<version>${apache-ant-version}</version>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit-version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>${log4j-version}</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
			<groupId>org.fusesource.wikitext</groupId>
			<artifactId>wikitext-core</artifactId>
			<version>${wikitext-core-version}</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
					<optimize>true</optimize>
					<debug>true</debug>
					<showDeprecation>true</showDeprecation>
					<showWarnings>true</showWarnings>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<version>2.8</version>
				<configuration>
					<useProjectReferences>false</useProjectReferences>
					<downloadSources>true</downloadSources>
					<downloadJavadocs>true</downloadJavadocs>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>
