<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>com.sun.istack</groupId>
	<artifactId>istack-commons-tools</artifactId>
	<version>2.2</version>
	<packaging>jar</packaging>
	<name>Istack Commons - Tools</name>
	<description>Istack Common Utility Code Tools</description>
	<url>https://istack-commons.dev.java.net/</url>

	<scm>
		<connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:istack-commons/istack-commons/tools</connection>
		<developerConnection>scm:cvs:pserver:username@cvs.dev.java.net:/cvs:istack-commons/istack-commons/tools</developerConnection>
		<url>https://istack-commons.dev.java.net/source/browse/istack-commons/istack-commons/tools</url>
	</scm>

	<licenses>
		<license>
			<name>CDDL v1.0 / GPL v2 dual license</name>
			<url>https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>kohsuke</id>
			<name>Kohsuke Kawaguchi</name>
			<email>kohsuke.kawaguchi@sun.com</email>
		</developer>
	</developers>

	<dependencies>
		<dependency>
			<groupId>org.apache.ant</groupId>
			<artifactId>ant</artifactId>
			<version>1.7.0</version>
		</dependency>
	</dependencies>

	<profiles>
		<profile>
			<id>java-home-parent-lib-tools-jar</id>
			<activation>
				<activeByDefault>false</activeByDefault>
				<file>
					<exists>${java.home}/../lib/tools.jar</exists>
				</file>
			</activation>
			<dependencies>
				<dependency>
					<groupId>sun.jdk</groupId>
					<artifactId>tools</artifactId>
					<version>1.5.0</version>
					<scope>system</scope>
					<systemPath>${java.home}/../lib/tools.jar</systemPath>
				</dependency>
			</dependencies>
		</profile>
		<profile>
			<id>java-home-parent-classes-classes-jar</id>
			<activation>
				<activeByDefault>false</activeByDefault>
				<file>
					<exists>${java.home}/../Classes/classes.jar</exists>
				</file>
			</activation>
			<dependencies>
				<dependency>
					<groupId>sun.jdk</groupId>
					<artifactId>tools</artifactId>
					<version>1.5.0</version>
					<scope>system</scope>
					<systemPath>${java.home}/../Classes/classes.jar</systemPath>
				</dependency>
			</dependencies>
		</profile>
	</profiles>


	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>
