mirror of
https://github.com/nicolabs/ciform.git
synced 2026-04-19 10:53:07 +02:00
- removed revision number in the 'publications' directory + jsdoc-template for this project (still things to do) + tools to generate ant call hierarchy
57 lines
2.2 KiB
Properties
57 lines
2.2 KiB
Properties
########################################
|
|
#
|
|
# This file defines some static parameters, common to all projects.
|
|
#
|
|
# Some important properties are marked as "required" so you can spot them.
|
|
# They are required to have valid values for the projects to build.
|
|
#
|
|
# To override some properties, you should not edit this file :
|
|
# 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,
|
|
# you'll not 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.
|
|
#
|
|
########################################
|
|
|
|
# (required as a convenience) -> set to common tools directory
|
|
# Set it to an absolute path here
|
|
# or set it as a relative path in the main projects' properties.
|
|
# You can use absolute paths in the properties of this file to get rid of this one.
|
|
#tools.dir=/opt
|
|
|
|
# JsUnit settings
|
|
|
|
#jsunit.dir=/opt/jsunit
|
|
jsunit.coreJs=${jsunit.dir}/app/jsUnitCore.js
|
|
#jsunit.build=${jsunit.dir}/build.xml
|
|
jsunit.testRunner=${jsunit.dir}/testRunner.html
|
|
#jsunit.browsers=/usr/bin/firefox,/usr/bin/konqueror
|
|
|
|
# Ant settings
|
|
|
|
# (required) -> set to Ivy library containing Ant task
|
|
ant.ivytask.path=${tools.dir}/apache-ivy-2.2.0/ivy-2.2.0.jar
|
|
# (required) -> set to Javascript Ant template project
|
|
ant.jsproject.path=${tools.dir}/build/ant-js.xml
|
|
ivy.settings.path=${tools.dir}/build/ivysettings.xml
|
|
|
|
# Other tools
|
|
|
|
# Full path to the jar of the YUI compressor (http://developer.yahoo.com/yui/compressor)
|
|
# (required) -> define this property in your "local.properties" file
|
|
yuicompressor.jar=${tools.dir}/yuicompressor-2.4.7/build/yuicompressor-2.4.7.jar
|
|
|
|
# Installation directory of JSDoc-toolkit (http://code.google.com/p/jsdoc-toolkit)
|
|
# (required) -> define this property in your "local.properties" file
|
|
jsdoc.dir=${tools.dir}/jsdoc_toolkit-2.4.0/jsdoc-toolkit
|
|
jsdoc.template.dir=${tools.dir}/build/jsdoc-template
|
|
|
|
# Command to run PHPDocumentor
|
|
phpdoc.exe=${tools.dir}/php-5.3.9-Win32-VC9-x86/php.exe ${tools.dir}/PhpDocumentor-1.4.4/phpdoc.php
|
|
|
|
# Where to publish artifacts
|
|
pub.dir=${tools.dir}/../publications |