source: release-kits/lirk3/resources/gs3-release-maker/ant/docs/manual/sysclasspath.html@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

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