<?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>
    
	<groupId>org.codehaus.mojo</groupId>
	<artifactId>chronos-maven-plugin</artifactId>
	<version>1.0-atlassian-4</version>
	<url>http://mojo.codehaus.org</url>
	<organization>
		<name>CodeHaus</name>
		<url>http://mojo.codehaus.org</url>
	</organization>
	<name>Chronos</name>
	<inceptionYear>2008</inceptionYear>
	<description>
	    Plugin for testing performance with jmeter
	    and creating nice reports of the results.
	</description>
	<licenses>
	  <license>
	    <name>LGPL (GNU Lesser General Public License) 2.1</name>
	    <url>http://www.gnu.org/copyleft/lesser.html</url>
	  </license>
	  <license>
	    <name>Common Public License 1.0</name>
	    <url>http://www.opensource.org/licenses/cpl.php</url>
	  </license>
	</licenses>
	<developers>
		<developer>
			<id>soelvpil</id>
			<name>Kent Soelvsten</name>
			<email>ksr@lakeside.dk</email>
		</developer>
	</developers>
	<prerequisites>
		<maven>2.0.6</maven>
	</prerequisites>
	<scm>
		<connection>scm:svn:https://svn.atlassian.com/svn/public/atlassian/vendor/chronos-maven-plugin/tags/chronos-maven-plugin-1.0-atlassian-4</connection>
		<developerConnection>scm:svn:https://svn.atlassian.com/svn/public/atlassian/vendor/chronos-maven-plugin/tags/chronos-maven-plugin-1.0-atlassian-4</developerConnection>
		<url>https://svn.atlassian.com/svn/public/atlassian/vendor/chronos-maven-plugin/tags/chronos-maven-plugin-1.0-atlassian-4</url>
	</scm>

	<packaging>maven-plugin</packaging>
	
	<dependencies>
		<dependency>
			<groupId>org.apache.maven.reporting</groupId>
			<artifactId>maven-reporting-api</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>org.apache.maven.reporting</groupId>
			<artifactId>maven-reporting-impl</artifactId>
			<version>2.0</version>
		</dependency>
		<dependency>
			<groupId>commons-math</groupId>
			<artifactId>commons-math</artifactId>
			<version>1.1</version>
		</dependency>
		<dependency>
			<groupId>jfree</groupId>
			<artifactId>jfreechart</artifactId>
			<version>1.0.7</version>
		</dependency>
	</dependencies>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>cobertura-maven-plugin</artifactId>
				<version>2.0</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-report-plugin</artifactId>
				<reportSets>
					<reportSet>
						<id>unit</id>
						<configuration>
							<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
							<outputName>surefire-report</outputName>
						</configuration>
						<reports>
							<report>report</report>
						</reports>
					</reportSet>
				</reportSets>
			</plugin>
		</plugins>
	</reporting>

	<distributionManagement>
		<repository>
			<id>atlassian-3rdparty</id>
			<url>dav:https://maven.atlassian.com/3rdparty</url>
		</repository>
	</distributionManagement>

</project>
