It would be great if it0063 got fixed as it prevents a successful
build of m2 on the Mac, looking for a non existent tools.jar file.
How about defining a system property in the pom like so
<dependency>
<groupId>jdk-tools</groupId>
<artifactId>jdk-tools</artifactId>
<version>1.4.2</version>
<scope>system</scope>
<!--systemPath>${java.home}/../lib/tools.jar</systemPath-->
<systemPath>$TOOLS_JAR</systemPath>
</dependency>
and in the bootup script look for darwin and set it accordingly:
export TOOLS_JAR=$JAVA_HOME/../Classes/classes.jar
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]