maven/maven-core-it/it0063/pom.xml

49 lines
1.3 KiB
XML

<model>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it</groupId>
<artifactId>maven-core-it0063</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>jdk-tools</groupId>
<artifactId>jdk-tools</artifactId>
<version>1.4.2</version>
<scope>system</scope>
<systemPath>${toolsJarPath}</systemPath>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>default-tools.jar</id>
<activation>
<property>
<name>java.vendor</name>
<value>Sun Microsystems Inc.</value>
</property>
</activation>
<properties>
<toolsJarPath>${java.home}/../lib/tools.jar</toolsJarPath>
</properties>
</profile>
<profile>
<id>osx-tools.jar</id>
<activation>
<property>
<name>java.vendor</name>
<value>Apple Computer, Inc.</value>
</property>
</activation>
<properties>
<toolsJarPath>${java.home}/../Classes/classes.jar</toolsJarPath>
</properties>
</profile>
</profiles>
</model>