1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
<!-- ANT includes for the _shared files in all project
Include this after the 'project' and 'version' defines, but before everything
else.
-->
<property name="_shared.dirs.base"
value="${basedir}/../_shared" />
<!-- Include the loaded, included XML files as defined in the ent file's
loaded files.
Note that this creates a dependency upon parent directories knowledge
of sub-directories. However, using the standardized naming convention,
this should be a safe assumption.
-->
&inc._shared.3rdparty;
&inc._shared.license;
&inc._shared.xdocs;
<!-- don't include deployed -->
<!-- this must be after all other includes -->
&inc._shared.common-ant;
<!-- must be included for tests to work right for JDK 1.1 and pre-autodoc
generation. JDK 1.1 doesn't recoginize the 'java.class.path' relative
paths correctly on all platforms. -->
<path id="classpath.bootstrap.xml">
<pathelement location="${libs.ant.current.core}" />
<pathelement location="${libs.ant.current.optional}" />
<pathelement location="${libs.xerces.current.api}" />
<pathelement location="${libs.xerces.current.impl}" />
</path>
<path id="classpath.bootstrap.ant">
<pathelement location="${libs.ant.current.core}" />
<pathelement location="${libs.ant.current.optional}" />
</path>
<path id="classpath.bootstrap">
<!--
<pathelement location="${_shared.dirs.base}/bootstrap/GroboTesting-1.0.0alpha0-core.jar" />
-->
<pathelement location="${_shared.dirs.base}/bootstrap/GroboTestingAutodoc-1.0.0alpha2-core.jar" />
<pathelement location="${_shared.dirs.base}/bootstrap/GroboTestingTP-1.0.0alpha1-core.jar" />
<pathelement location="${_shared.dirs.base}/bootstrap/GroboPMTI-1.0.0alpha2-core.jar" />
<pathelement location="${_shared.dirs.base}/bootstrap/GroboUtilClasses-1.0.0alpha2-core.jar" />
<pathelement location="${_shared.dirs.base}/bootstrap/GroboUtilXML-1.0.0rc1-core.jar" />
</path>
<path id="classpath.bootstrap.core">
<pathelement path="${java.class.path}" />
</path>
|