Author: jdcasey Date: Thu Sep 15 12:11:16 2005 New Revision: 289290 URL: http://svn.apache.org/viewcvs?rev=289290&view=rev Log: Trying to adjust to work with OSX.
Modified: maven/components/trunk/maven-core-it/it0063/pom.xml Modified: maven/components/trunk/maven-core-it/it0063/pom.xml URL: http://svn.apache.org/viewcvs/maven/components/trunk/maven-core-it/it0063/pom.xml?rev=289290&r1=289289&r2=289290&view=diff ============================================================================== --- maven/components/trunk/maven-core-it/it0063/pom.xml (original) +++ maven/components/trunk/maven-core-it/it0063/pom.xml Thu Sep 15 12:11:16 2005 @@ -10,7 +10,7 @@ <artifactId>jdk-tools</artifactId> <version>1.4.2</version> <scope>system</scope> - <systemPath>${java.home}/../lib/tools.jar</systemPath> + <systemPath>${toolsJarPath}</systemPath> </dependency> <dependency> <groupId>junit</groupId> @@ -19,4 +19,30 @@ <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> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]