You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by pi...@apache.org on 2005/09/06 23:25:51 UTC

svn commit: r279120 - in /xmlgraphics/fop/trunk: build.properties build.xml

Author: pietsch
Date: Tue Sep  6 14:25:45 2005
New Revision: 279120

URL: http://svn.apache.org/viewcvs?rev=279120&view=rev
Log:
Moved default property settings from build.properties to build.xml.
Add comments to build.properties.

Modified:
    xmlgraphics/fop/trunk/build.properties
    xmlgraphics/fop/trunk/build.xml

Modified: xmlgraphics/fop/trunk/build.properties
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/build.properties?rev=279120&r1=279119&r2=279120&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/build.properties (original)
+++ xmlgraphics/fop/trunk/build.properties Tue Sep  6 14:25:45 2005
@@ -1,15 +1,39 @@
-# these settings can be overridden locally in build-local.properties,
-# which is not stored in CVS (due to .cvsignore)
+## This is a template for settings which are useful to be
+## overridden in a developer specific property files.
+## Copy this to build-local.properties, uncomment and change
+## properties which should be overridden.
+## The file buil-local.properties is not stored in the code
+## repository and ignored for file adds.
 
-# output format for "ant examples"
-build.property.examples.mime.type = application/pdf
+## -----------------------
+## 1. Important path settings
 
-# decides if JUnit test shall be forked
-junit.fork = on
+## All Jars from the optional lib directory are added used for
+## compilation and JUnit tests. Put your jars for additional
+## dependencies and tools here.
+# optional.lib.dir = /home/bart/java/lib
 
-# specifies the default file that contains a list of disabled layout engine tests.
-layoutengine.disabled=test/layoutengine/disabled-testcases.txt
+## -----------------------
+## 2. Switches for common tasks
+
+# Javac switches
+# debug = on
+# optimize = off
+# deprecation = on
+# javac.source = 1.3
+# javac.target = 1.3
+
+## JUnit task switches
+# junit.fork = on
+
+## Packages to produce javadoc.
+## Add packages for FOP extensions if necessary.
+# javadoc.packages = org.apache.fop.*,fopextension.*
+
+## -----------------------
+## 3. FOP specific properties
+
+# Specify an alternate file that contains a list of disabled layout
+# engine tests.
+# layoutengine.disabled = test/layoutengine/disabled-testcases.txt
 
-# directory for optional-lib (so there is no need to copy the jar into
-# the fop/lib directory
-# optional.lib.dir = <Optional Lib Directory>
\ No newline at end of file

Modified: xmlgraphics/fop/trunk/build.xml
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/build.xml?rev=279120&r1=279119&r2=279120&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/build.xml (original)
+++ xmlgraphics/fop/trunk/build.xml Tue Sep  6 14:25:45 2005
@@ -160,6 +160,9 @@
   <property name="javac.source" value="1.3"/>
   <property name="javac.target" value="1.3"/>
     
+
+  <property name="junit.fork" value="on"/>
+
   <property name="javadoc.packages" value="org.apache.fop.*"/>
   
   <property name="src.dir" value="${basedir}/src"/>
@@ -181,6 +184,10 @@
 
   <property name="build.viewer.resources.dir" value="${build.classes.dir}/org/apache/fop/render/awt/viewer/resources"/>
   <property name="build.viewer.images.dir" value="${build.classes.dir}/org/apache/fop/render/awt/viewer/images"/>
+
+  <property name="build.property.examples.mime.type" value="application/pdf"/>
+
+  <property name="layoutengine.disabled" value="test/layoutengine/disabled-testcases.txt"/>
 
   <property name="dist.bin.dir" value="${basedir}/dist-bin"/>
   <property name="dist.src.dir" value="${basedir}/dist-src"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org