# ------------------------------------------------------------------------ # Build Properties File # ------------------------------------------------------------------------ # Ant properties for building the java applications # Values in this file will be overriden by any values with the same name # in the user-created project.properties file. # ------------------------------------------------------------------------ # Main Project Properties # ------------------------------------------------------------------------ # Application properties title=Mute Framework version=0.99a name=mute # Compile with debug code debug=on # Library directory within project. Where third party jars reside. lib.dir=${basedir}/lib # Source directory under the current root src.dir=${basedir}/src # Document/Report directory docs.dir=${basedir}/docs # Directory for compiled classes build.dir=${basedir}/bin # Test tree will be compiled into this directory tree build.test.dir=${basedir}/tests-bin # Directory we generate distribution units such as jars and zips dist.dir=${basedir}/dist # Test directory under the current root test.dir=${basedir}/test # Folder for Misc. Items etc.dir=${basedir}/etc # Folder for test logging log.dir=${basedir}/logs # ------------------------------------------------------------------------ # Release properties # ------------------------------------------------------------------------ # Directory for release Zips release.dir=${basedir}/release # Zip file that gets created for a release release.zip=${name}-${version}.zip release-with-source.zip=${name}-${version}-with-source.zip # Path prefix within the Zip file release.path=${name}-${version} # ------------------------------------------------------------------------ # Junit properties # ------------------------------------------------------------------------ # Wildcards to be matched by JUnit tests # Convention is that our JUnit test classes have names like XXXXTestSuite or XXXTests test.includes=**/*TestSuite.class **/*Tests.class # Wildcards to exclude among JUnit tests test.excludes=**/Abstract* # ------------------------------------------------------------------------ # Docbook and Reference Documentation # ------------------------------------------------------------------------ # Directory where JUnit test reports are written docs.junit.reports.dir=${docs.dir}/test-reports # Directory where JUnit test summary is written docs.junit.summary.dir=${docs.dir}/test-summary # Directory for generated API documentation --> docs.api.dir=${docs.dir}/api # For use with docbook generation etc.reference.dir=${etc.dir}/reference #------------------------------------------------------------------------ # Site deployment #------------------------------------------------------------------------