rubys 01/03/03 05:10:46
Modified: docs/manual coretasklist.html Added: docs/manual sysclasspath.html Log: Delinquent change to the documentation to document build.sysclasspath. THis is only the first installment. Next I'm going to go into each task affected and document the default and provide a link to this text. Revision Changes Path 1.4 +1 -0 jakarta-ant/docs/manual/coretasklist.html Index: coretasklist.html =================================================================== RCS file: /home/cvs/jakarta-ant/docs/manual/coretasklist.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- coretasklist.html 2001/02/28 01:41:08 1.3 +++ coretasklist.html 2001/03/03 13:10:44 1.4 @@ -12,6 +12,7 @@ <h3>Concepts and Types</h3> <a href="dirtasks.html">Directory Based Tasks</a><br> +<a href="sysclasspath.html">build.sysclasspath</a><br> <a href="CoreTypes/patternset.html">Patternset</a><br> <a href="CoreTypes/fileset.html">Fileset</a><br> <a href="CoreTypes/mapper.html">File Mappers</a><br> 1.1 jakarta-ant/docs/manual/sysclasspath.html Index: sysclasspath.html =================================================================== <html> <head> <meta http-equiv="Content-Language" content="en-us"> <title>Ant User Manual</title> </head> <body> <h2><a name="sysclasspath">build.sysclasspath</a></h2> <p>The value of the build.sysclasspath property control how the system classpath, ie. the classpath in effect when Ant is run, affects the behaviour of classpaths in Ant. The default behavior varies from Ant to Ant task.</p> The values and their meanings are: <table cellspacing="20"> <tr> <th align="left" valign="top">only</th> <td>Only the system classpath is used and classpaths specified in build files, etc are ignored. This situation could be considered as the person running the build file knows more about the environment than the person writing the build file </td> </tr> <tr> <th align="left" valign="top">ignore</th> <td> The system classpath is ignored. This situation is the reverse of the above. The person running the build trusts the build file writer to get the build file right </td> </tr> <tr> <th align="left" valign="top">last</th> <td> The classpath is concatenated to any specified classpaths at the end. This is a compromise, where the build file writer has priority. </td> </tr> <tr> <th align="left" valign="top">first</th> <td> Any specified classpaths are concatenated to the system classpath. This is the other form of compromise where the build runner has priority. </td> </tr> </table> </body> </html>
