summaryrefslogtreecommitdiff
path: root/manual/sysclasspath.html
diff options
context:
space:
mode:
authorGintas Grigelionis <gintas@apache.org>2018-02-28 07:58:59 +0100
committerGintas Grigelionis <gintas@apache.org>2018-02-28 08:00:45 +0100
commit66b52f99e4306fe928aa5e497021cb51cb927e5e (patch)
treec58d724bc70f01dcf464dc4c84832507ca8c4d82 /manual/sysclasspath.html
parent3e61185e19eca3ca70afeda3fb31a1a544f2b474 (diff)
downloadant-66b52f99e4306fe928aa5e497021cb51cb927e5e.tar.gz
Use HTML 5(-ish), fix links
Diffstat (limited to 'manual/sysclasspath.html')
-rw-r--r--manual/sysclasspath.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/manual/sysclasspath.html b/manual/sysclasspath.html
index 3c50d2682..4ad6a1287 100644
--- a/manual/sysclasspath.html
+++ b/manual/sysclasspath.html
@@ -25,7 +25,7 @@
<body>
<h2 id="sysclasspath">build.sysclasspath</h2>
-<p>The value of the build.sysclasspath property
+<p>The value of the <code>build.sysclasspath</code> property
controls how the system classpath, i.e. the classpath in effect when
Apache Ant is run, affects the behavior of classpaths in Ant.
The default behavior varies from task to task.</p>
@@ -35,7 +35,7 @@ The values and their meanings are:
<table>
<tr><th>value</th><th>meaning</th></tr>
<tr>
-<td align="left" valign="top">only</td>
+<td>only</td>
<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
@@ -44,7 +44,7 @@ build file.
</tr>
<tr>
-<td align="left" valign="top">ignore</td>
+<td>ignore</td>
<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
@@ -53,7 +53,7 @@ build file right. This mode is recommended for portable scripts.
</tr>
<tr>
-<td align="left" valign="top">last</td>
+<td>last</td>
<td>
The classpath is concatenated to any specified classpaths at the end. This
is a compromise, where the build file writer has priority.
@@ -61,7 +61,7 @@ is a compromise, where the build file writer has priority.
</tr>
<tr>
-<td align="left" valign="top">first</td>
+<td>first</td>
<td>
Any specified classpaths are concatenated to the system classpath. This is
the other form of compromise where the build runner has priority.
@@ -70,9 +70,9 @@ the other form of compromise where the build runner has priority.
</table>
<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
+bootclasspath settings&mdash;it combines the bootclasspath that has been
+specified for a task with the bootclasspath of the JVM running
+Ant. If the property has not been set, it defaults to <q>ignore</q> in
this case.</p>
</body>