You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

sysclasspath.html 1.5 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>build.sysclasspath</title>
  5. </head>
  6. <body>
  7. <h2><a name="sysclasspath">build.sysclasspath</a></h2>
  8. <p>The value of the build.sysclasspath property
  9. control how the system classpath, ie. the classpath in effect when
  10. Ant is run, affects the behaviour of classpaths in Ant.
  11. The default behavior varies from Ant to Ant task.</p>
  12. The values and their meanings are:
  13. <table cellspacing="20">
  14. <tr>
  15. <th align="left" valign="top">only</th>
  16. <td>Only the system classpath is used and classpaths specified in build files,
  17. etc are ignored. This situation could be considered as the person running
  18. the build file knows more about the environment than the person writing the
  19. build file
  20. </td>
  21. </tr>
  22. <tr>
  23. <th align="left" valign="top">ignore</th>
  24. <td>
  25. The system classpath is ignored. This situation is the reverse of the
  26. above. The person running the build trusts the build file writer to get the
  27. build file right
  28. </td>
  29. </tr>
  30. <tr>
  31. <th align="left" valign="top">last</th>
  32. <td>
  33. The classpath is concatenated to any specified classpaths at the end. This
  34. is a compromise, where the build file writer has priority.
  35. </td>
  36. </tr>
  37. <tr>
  38. <th align="left" valign="top">first</th>
  39. <td>
  40. Any specified classpaths are concatenated to the system classpath. This is
  41. the other form of compromise where the build runner has priority.
  42. </td>
  43. </tr>
  44. </table>
  45. <hr>
  46. <p align="center">Copyright &copy; 2001-2002 Apache Software Foundation. All rights
  47. Reserved.</p>
  48. </body>
  49. </html>