jefft 02/04/19 06:15:23
Modified: sourceresolve build.xml default.properties
Log:
Having moved all/src/java/org/apache/excalibur/source to this project, add the
dependencies to the build file.
Revision Changes Path
1.12 +6 -0 jakarta-avalon-excalibur/sourceresolve/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/sourceresolve/build.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- build.xml 16 Apr 2002 12:00:42 -0000 1.11
+++ build.xml 19 Apr 2002 13:15:22 -0000 1.12
@@ -13,6 +13,9 @@
<path id="project.class.path">
<pathelement path="${java.class.path}"/>
<pathelement location="${build.classes}"/>
+ <pathelement location="${avalon-framework.jar}"/>
+ <pathelement location="${excalibur-pool.jar}"/>
+ <pathelement location="${excalibur-core.jar}"/>
<pathelement location="${checkstyle.jar}"/>
</path>
@@ -35,6 +38,9 @@
<target name="dependencies" description="Check dependencies"
unless="skip.dependencies">
<ant antfile="${depchecker.prefix}/depchecker.xml"
target="checkCommon"/>
+ <ant antfile="${depchecker.prefix}/depchecker.xml"
target="checkFramework"/>
+ <ant antfile="${depchecker.prefix}/depchecker.xml"
target="checkPool"/>
+ <ant antfile="${depchecker.prefix}/depchecker.xml"
target="checkCore"/>
</target>
<target name="dependencies-test" depends="dist-jar, dependencies"
1.5 +20 -0 jakarta-avalon-excalibur/sourceresolve/default.properties
Index: default.properties
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/sourceresolve/default.properties,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- default.properties 16 Apr 2002 12:00:42 -0000 1.4
+++ default.properties 19 Apr 2002 13:15:22 -0000 1.5
@@ -12,6 +12,26 @@
package-version=0.99
year=2000-2002
+# --------------------------------------------------
+# REQUIRED LIBRARIES
+# --------------------------------------------------
+# ----- Avalon Framework, version 4.1 or later -----
+avalon-framework.home=${basedir}/../../jakarta-avalon
+avalon-framework.lib=${avalon-framework.home}/build/lib
+avalon-framework.jar=${avalon-framework.lib}/avalon-framework.jar
+
+# ----- Excalibur Pool, version 1.0 or later -----
+excalibur-pool.home=${basedir}/../pool/dist
+excalibur-pool.lib=${excalibur-pool.home}
+excalibur-pool.jar=${excalibur-pool.lib}/excalibur-pool-1.0.jar
+
+# ----- Excalibur Core -----
+excalibur-core.home=${basedir}/../all
+excalibur-core.lib=${excalibur-core.home}/build/lib
+excalibur-core.jar=${excalibur-core.lib}/excalibur-core.jar
+
+# --------------------------------------------------
+
# Settings used to configure compile environment
build.debug = on
build.optimize = off
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>