2008-09-10 00:25:48 +02:00
|
|
|
########################################
|
|
|
|
#
|
|
|
|
# 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
|
2008-09-20 12:18:21 +02:00
|
|
|
src.dir=${basedir}/src/main
|
2008-09-10 00:25:48 +02:00
|
|
|
|
|
|
|
# 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
|
2008-09-10 00:25:48 +02:00
|
|
|
|
|
|
|
# Where to find the tests sources
|
2008-09-20 12:18:21 +02:00
|
|
|
tests.dir=${basedir}/src/test
|
2008-09-10 00:25:48 +02:00
|
|
|
|
2008-09-12 22:56:23 +02:00
|
|
|
# Where to write the JUnit XML results
|
|
|
|
tests.logs=${build.dir}/tests-results
|
|
|
|
|
2008-09-10 00:25:48 +02:00
|
|
|
# Where to create the packages
|
|
|
|
target.dir=${basedir}/target
|
|
|
|
|
|
|
|
# Where to copy the api documentation
|
|
|
|
doc.dir=${target.dir}/api
|
2008-09-21 13:07:21 +02:00
|
|
|
|
|
|
|
# JsUnit files
|
|
|
|
jsunit.dir=${lib.dir}/jsunit
|
|
|
|
jsunit.testRunner=${jsunit.dir}/testRunner.html
|
|
|
|
jsunit.coreJs=${jsunit.dir}/app/jsUnitCore.js
|
|
|
|
# define the following in a 'local.properties' file in the same directory than this file
|
2008-09-23 00:25:18 +02:00
|
|
|
#jsunit.browsers=/usr/bin/konqueror,/usr/bin/firefox
|
2008-09-21 13:07:21 +02:00
|
|
|
|