# # Copyright 2004 The Apache Software Foundation # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or # implied. # # See the License for the specific language governing permissions and # limitations under the License. # # # ----------------------------------------------------------------------------- # Component ant.properties.sample # # This is an example "ant.properties" file, used to customize the building of # the component for your local environment. It defines the location of all # external modules that this component depend on. Copy this file to # "ant.properties" in the source directory, and customize it as needed. # # The ant.properties values in this directory apply only to this component. # It is overridden by ../ant.properties and ~/build.properties # It overrides all default.properties files and ~/.ant.properties # # $Id: ant.properties.sample,v 1.11 2004/02/28 11:47:16 cziegeler Exp $ # ----------------------------------------------------------------------------- # ----- Compile Control Flags ----- build.debug=on build.optimize=off build.deprecation=off #build.compiler=jikes # ----- Base Directory in which all the packages are stored ----- base.path=${basedir}/../.. # -------------------------------------------------- # REQUIRED LIBRARIES # -------------------------------------------------- # ----- Excalibur util, version 1.0 or later ----- excalibur-util.home=${basedir}/../util/dist excalibur-util.lib=${excalibur-util.home} excalibur-util.jar=${excalibur-util.lib}/excalibur-util-1.0.jar # ----- Excalibur thread, version 1.0 or later ----- excalibur-thread.home=${basedir}/../thread/dist excalibur-thread.lib=${excalibur-thread.home} excalibur-thread.jar=${excalibur-thread.lib}/excalibur-thread-1.0.jar # ----- Excalibur threadcontext, version 1.0 or later ----- excalibur-threadcontext.home=${basedir}/../threadcontext/dist excalibur-threadcontext.lib=${excalibur-threadcontext.home} excalibur-threadcontext.jar=${excalibur-threadcontext.lib}/excalibur-threadcontext-1.0.jar # ----- Excalibur Collections, version 1.0 or later ----- excalibur-collections.home=${basedir}/../collections/dist excalibur-collections.lib=${excalibur-collections.home} excalibur-collections.jar=${excalibur-collections.lib}/excalibur-collections-1.0.jar # ----- Excalibur Concurrent, version 1.0 or later ----- excalibur-concurrent.home=${basedir}/../concurrent/dist excalibur-concurrent.lib=${excalibur-concurrent.home} excalibur-concurrent.jar=${excalibur-concurrent.lib}/excalibur-concurrent-1.0.jar # ----- Excalibur Pool, version 1.1 or later ----- excalibur-pool.home=${basedir}/../pool/dist excalibur-pool.lib=${excalibur-pool.home} excalibur-pool.jar=${excalibur-pool.lib}/excalibur-pool-1.1.jar # ----- Excalibur Util, version 1.0 or later ----- excalibur-util.home=${basedir}/../util/build/lib excalibur-util.lib=${excalibur-util.home} excalibur-util.jar=${excalibur-util.lib}/excalibur-util-1.0.jar # ----- Excalibur Scratchpad ----- excalibur-scratchpad.home=${basedir}/../all excalibur-scratchpad.lib=${excalibur-scratchpad.home}/build/lib excalibur-scratchpad.jar=${excalibur-scratchpad.lib}/excalibur-scratchpad.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 # ----- Avalon Framework, version 4.1 or later ----- avalon-framework.home=${basedir}/../../avalon avalon-framework.lib=${avalon-framework.home}/build/lib avalon-framework.jar=${avalon-framework.lib}/avalon-framework.jar # -------------------------------------------------- # OPTIONAL LIBRARIES # -------------------------------------------------- # ----- JUnit Unit Test Suite, version 3.7 or later. ----- # Not needed if junit.jar is in $ANT_HOME/lib junit.home=${base.path}/junit3.7 junit.lib=${junit.home} junit.jar=${junit.lib}/junit.jar # ----- Checkstyle, version 2.1 or later ----- # Uncomment the 'do.checkstyle' flag property to enable checkstyle # do.checkstyle= checkstyle.home=${base.path}/checkstyle-2.1 checkstyle.lib=${checkstyle.home} checkstyle.jar=${checkstyle.lib}/checkstyle-all-2.1.jar