I don't think you need to add tools.jar as a dependency on Mac. See http://maven.apache.org/general.html#tools-jar-dependency
Chris > -----Original Message----- > From: Ryan Cuprak [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 06 March, 2007 13:19 > To: Maven Users List > Subject: Tools.jar & Apple > > Hello, > I am trying to get the "jaxws-maven-plugin" up and running > on my box. Evidently Apple has been kind enough to stick > tools.jar elsewhere. > > Any reason why the snippet below wouldn't work? > > -Ryan > > Snippet: > > <plugins> > <plugin> > <groupId>org.codehaus.mojo</groupId> > <artifactId>jaxws-maven-plugin</artifactId> > <version>1.0-beta-1-SNAPSHOT</version> > <executions> > <execution> > <goals> > <goal>wsgen</goal> > </goals> > </execution> > </executions> > <configuration> > <sei>net.cuprak.ryanportal</sei> > <genWsdl>true</genWsdl> > > </configuration> > <dependencies> > <dependency> > <groupId>sun.jdk</groupId> > <artifactId>tools</artifactId> > <version>1.5.0</version> > <systemPath>/System/Library/Frameworks/ > JavaVM.framework/Versions/1.5/Classes/classes.jar</systemPath> > <scope>system</scope> > </dependency> > </dependencies> > </plugin> > > </plugins> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
