You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by cb...@apache.org on 2007/05/14 15:08:10 UTC

svn commit: r537814 - in /velocity/dvsl/trunk: build.properties build.xml default.properties

Author: cbrisson
Date: Mon May 14 06:08:10 2007
New Revision: 537814

URL: http://svn.apache.org/viewvc?view=rev&rev=537814
Log:
merged default.properties and build.properties

Removed:
    velocity/dvsl/trunk/default.properties
Modified:
    velocity/dvsl/trunk/build.properties
    velocity/dvsl/trunk/build.xml

Modified: velocity/dvsl/trunk/build.properties
URL: http://svn.apache.org/viewvc/velocity/dvsl/trunk/build.properties?view=diff&rev=537814&r1=537813&r2=537814
==============================================================================
--- velocity/dvsl/trunk/build.properties (original)
+++ velocity/dvsl/trunk/build.properties Mon May 14 06:08:10 2007
@@ -1,3 +1,59 @@
+# the local repository
+local.repository = ./lib
+
+# The name of this project
+project.name = velocity-dvsl
+
+# The title of this project
+project.title = DVSL
+
+# version number
+project.version = 0.45
+
+# The name that is used to create the jar file
+final.name = ${project.name}-${project.version}
+
+# Name of generated dvsl.jar file
+dvsl.jar = ${final.name}.jar
+
+# The base directory for compilation targets
+build.home = target
+
+# The base directory for distribution targets
+dist.home = dist
+
+# The base directory for component sources
+source.home = src
+
+# The base directory for config files
+conf.home = src/conf
+
+# The docs source directory
+docs.src = xdocs
+
+# The docs destination directory
+docs.dest = docs
+
+# The printdocs destination directory
+docs-printable.dest = docs_print
+
+# Location of ant.jar
+default-ant.jar = ${ant.home}/lib/ant.jar
+
+# Should Java compilations set the 'debug' compiler option?
+compile.debug = true
+
+# Should Java compilations set the 'deprecation' compiler option?
+compile.deprecation = true
+
+# Should Java compilations set the 'optimize' compiler option?
+compile.optimize = true
+
+# Should all tests fail if one does?
+test.failonerror = true
+
+# The test runner to execute
+test.runner = junit.textui.TestRunner
 # #######################################################################
 #
 # Downloading jars from ibiblio repository

Modified: velocity/dvsl/trunk/build.xml
URL: http://svn.apache.org/viewvc/velocity/dvsl/trunk/build.xml?view=diff&rev=537814&r1=537813&r2=537814
==============================================================================
--- velocity/dvsl/trunk/build.xml (original)
+++ velocity/dvsl/trunk/build.xml Mon May 14 06:08:10 2007
@@ -6,7 +6,6 @@
   <property file="${user.home}/${project.name}.build.properties" /> 
   <property file="${user.home}/build.properties" />
   <property file="${basedir}/build.properties" />
-  <property file="${basedir}/default.properties" />
 
 <!-- ========== Executable Targets ======================================== -->