2001-03-03 13:10:45 +00:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Language" content="en-us">
|
2005-03-07 18:38:27 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/style.css"/>
|
2002-02-04 20:57:49 +00:00
|
|
|
<title>build.sysclasspath</title>
|
2001-03-03 13:10:45 +00:00
|
|
|
</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
|
2002-02-04 20:57:49 +00:00
|
|
|
Ant is run, affects the behaviour of classpaths in Ant.
|
2001-03-03 13:10:45 +00:00
|
|
|
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>
|
|
|
|
|
2005-01-14 09:45:54 +00:00
|
|
|
<p><em>Since Ant 1.7</em> the value of this property also affects the
|
|
|
|
bootclasspath settings - it combines the bootclasspath that has been
|
|
|
|
specified for a task with the bootclasspath of the Java VM running
|
|
|
|
Ant. If the property has not been set, it defaults to "ignore" in
|
|
|
|
this case.</p>
|
|
|
|
|
2002-01-10 08:48:33 +00:00
|
|
|
<hr>
|
2005-01-14 09:45:54 +00:00
|
|
|
<p align="center">Copyright © 2001-2002,2004-2005 The Apache Software Foundation. All rights
|
2002-01-10 08:48:33 +00:00
|
|
|
Reserved.</p>
|
2001-03-03 13:10:45 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|