ciform/ant-jsunit-hieatt/trunk/build.properties

45 lines
1.5 KiB
Properties
Raw Normal View History

########################################
#
# This file is a convenient way to define some parameters
# specific to the project, rather than from inside the build script.
#
# Depending on the ant targets that will be invoked,
# some properties will be required, some others won't.
#
# Usually you should not need to override those properties.
# If you really need to, you can create a new file called "local.properties"
# in the same directory and put inside any property you want to fit your local configuration.
#
# If you don't wish to create such a file, you can pass the required properties
# to ant as command line arguments using the -D option.
#
# Do NOT commit the "local.properties" file to the version control system
# (CVS, SVN, ...) : it should stay as a local configuration only.
# Do not modify or remove this file from the v.c.s. either ;-o
#
########################################
# Where the source files are : here Maven-style
src.dir=${basedir}/src/main/java
# Where to find resources required at execution time
rc.dir=${basedir}/src/main/resources
# Where to find third party libraries
lib.dir=lib
# A working directory to store temporary files
build.dir=${basedir}/build
2008-09-12 22:56:23 +02:00
classes.dir=${build.dir}/classes
# Where to find the tests sources
tests.dir=${basedir}/src/test/java
2008-09-12 22:56:23 +02:00
# Where to write the JUnit XML results
tests.logs=${build.dir}/tests-results
# Where to create the packages
target.dir=${basedir}/target
# Where to copy the api documentation
doc.dir=${target.dir}/api