<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>com.github.wavesoftware</groupId>
	<artifactId>glassfish-ant-console</artifactId>
	<version>0.1.3</version>
	<packaging>jar</packaging>

	<name>Glassfish extended ANT tasks</name>
	<description>Adds ant tasks to manage auth-realm, resources and pool as well as standard glassfish-ant-task</description>
	<url>http://wavesoftware.github.com/glassfish-ant-console</url>

	<licenses>
		<license>
			<name>The MIT License</name>
			<url>http://opensource.org/licenses/MIT</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<connection>scm:git:git@github.com:wavesoftware/glassfish-ant-console.git</connection>
		<developerConnection>scm:git:git@github.com:wavesoftware/glassfish-ant-console.git</developerConnection>
		<url>git@github.com:wavesoftware/glassfish-ant-console.git</url>
	</scm>

	<developers>
		<developer>
			<id>cardil</id>
			<name>Krzysztof Suszyński</name>
			<email>krzysztof.suszynski@gmail.com</email>
		</developer>
	</developers>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.5.2</version>
				<configuration>
					<formats>
						<format>html</format>
						<format>xml</format>
					</formats>
				</configuration>
				<executions>
					<execution>
						<phase>verify</phase>
						<goals>
							<goal>cobertura</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-antrun-plugin</artifactId>
				<version>1.7</version>
				<executions>
					<execution>
						<phase>verify</phase>
						<configuration>
							<target>
								<property name="maven.project.url" value="${project.url}" />
								<ant antfile="build.xml" />
							</target>
						</configuration>
						<goals>
							<goal>run</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<netbeans.hint.license>mit</netbeans.hint.license>
	</properties>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.10</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.ant</groupId>
			<artifactId>ant</artifactId>
			<version>1.8.4</version>
		</dependency>
		<dependency>
			<groupId>org.glassfish.main.packager</groupId>
			<artifactId>glassfish-ant-tasks</artifactId>
			<version>3.1.2</version>
			<type>zip</type>
		</dependency>
	</dependencies>
</project>
