mirror of
https://github.com/nicolabs/ciform.git
synced 2025-09-05 04:44:11 +02:00
# scripts and properties synchronized # sample common properties now include a directory name (so the user really just has to unzip in tools/)
33 lines
1.2 KiB
Properties
33 lines
1.2 KiB
Properties
########################################
|
|
#
|
|
# This file defines properties specific only to this project.
|
|
#
|
|
# Some important properties are marked as "required" so you can spot them.
|
|
# They are required to have valid values for the projects to build.
|
|
#
|
|
# You should not need to override those properties.
|
|
# If you really need to, you may create a new file called "local.properties" in the same directory
|
|
# and put inside any property you want to fit your local configuration.
|
|
#
|
|
# The "local.properties" file is meant to stay local,
|
|
# therefore you won't find it on the version control system (SVN, Hg, ...).
|
|
#
|
|
# If you don't wish to create such a file, you may pass the required properties
|
|
# to ant as command line arguments using the -D option.
|
|
#
|
|
########################################
|
|
|
|
# Where the source files are : here Maven-style
|
|
src.dir=${basedir}/src/main/js
|
|
|
|
# Temporary directory where to put intermediate files during build
|
|
build.dir=${basedir}/build
|
|
|
|
# Where the final files are going
|
|
target.dir=${basedir}/target
|
|
|
|
# A directory where all external tools can be found
|
|
tools.dir=${basedir}/../../tools
|
|
|
|
# Global properties file
|
|
common.properties=${tools.dir}/build/common.properties |