From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../ant/apache-ant-1.9.6/manual/sysclasspath.html | 79 ---------------------- 1 file changed, 79 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/sysclasspath.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/sysclasspath.html') diff --git a/framework/src/ant/apache-ant-1.9.6/manual/sysclasspath.html b/framework/src/ant/apache-ant-1.9.6/manual/sysclasspath.html deleted file mode 100644 index 5efb2086..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/sysclasspath.html +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - -build.sysclasspath - - - - -

build.sysclasspath

-

The value of the build.sysclasspath 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.

- -The values and their meanings are: - - - - - - - - - - - - - - - - - - - - - - -
valuemeaning
onlyOnly 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. -
ignore -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. This mode is recommended for portable scripts. -
last -The classpath is concatenated to any specified classpaths at the end. This -is a compromise, where the build file writer has priority. -
first -Any specified classpaths are concatenated to the system classpath. This is -the other form of compromise where the build runner has priority. -
- -

Since Ant 1.7 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.

- - - -- cgit 1.2.3-korg