RE: developing doclets with maven (revised)

2004-08-09 Thread Charles Daniels
My suggestion would be your second solution. Then each developer need only define the property tools.jar in his/her build.properties file. Although, you may want to consider using a version number in the property name (e.g., tools14.jar) just in case a developer also wants to point to version

Re: developing doclets with maven (revised)

2004-08-09 Thread Dion Gillard
Maven defines tools.jar as a system property. On Mon, 9 Aug 2004 07:54:39 +0100, Charles Daniels [EMAIL PROTECTED] wrote: My suggestion would be your second solution. Then each developer need only define the property tools.jar in his/her build.properties file. Although, you may want to

Re: developing doclets with maven (revised)

2004-08-09 Thread Shinobu Kawai
Hi Charles Dion, Thanks for your recommendations! Here's what I did: In my project's build.properties: maven.doccheck.tools.jar = ${tools.jar} maven.jar.override = on maven.jar.javadoc = ${maven.doccheck.tools.jar} By default, it uses the tools.jar maven uses. In case you are