joerg 2004/06/08 13:21:39
Modified: tools/targets compile-build.xml
tools/src blocks-build.xsl
. status.xml build.properties
Log:
build.archive-sources renamed to include.sources-in-jars to match our naming
scheme and added to build.properties
Revision Changes Path
1.13 +3 -3 cocoon-2.1/tools/targets/compile-build.xml
Index: compile-build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/tools/targets/compile-build.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- compile-build.xml 7 Jun 2004 08:55:25 -0000 1.12
+++ compile-build.xml 8 Jun 2004 20:21:38 -0000 1.13
@@ -125,7 +125,7 @@
</jar>
<!-- optionally add source files to the core jar -->
<if>
- <istrue value="${build.archive-sources}"/>
+ <istrue value="${include.sources-in-jars}"/>
<then>
<jar jarfile="${build}/${name}.jar" update="yes">
<fileset dir="${java}">
@@ -144,7 +144,7 @@
</jar>
<!-- optionally add source files to the jar -->
<if>
- <istrue value="${build.archive-sources}"/>
+ <istrue value="${include.sources-in-jars}"/>
<then>
<jar jarfile="${build}/${name}-deprecated.jar" update="yes">
<fileset dir="${deprecated.src}">
@@ -167,7 +167,7 @@
</jar>
<!-- optionally add source files to the jar -->
<if>
- <istrue value="${build.archive-sources}"/>
+ <istrue value="${include.sources-in-jars}"/>
<then>
<jar jarfile="${build}/${name}-testcase.jar" update="yes">
<fileset dir="${test}">
1.72 +1 -1 cocoon-2.1/tools/src/blocks-build.xsl
Index: blocks-build.xsl
===================================================================
RCS file: /home/cvs/cocoon-2.1/tools/src/blocks-build.xsl,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- blocks-build.xsl 7 Jun 2004 08:55:25 -0000 1.71
+++ blocks-build.xsl 8 Jun 2004 20:21:38 -0000 1.72
@@ -439,7 +439,7 @@
</jar>
<if>
- <istrue value="${{build.archive-sources}}"/>
+ <istrue value="${{include.sources-in-jars}}"/>
<then>
<jar jarfile="${{build.blocks}}/{$block-name}-block.jar"
update="true">
<fileset dir="${{blocks}}/{$block-name}/java">
1.358 +2 -2 cocoon-2.1/status.xml
Index: status.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/status.xml,v
retrieving revision 1.357
retrieving revision 1.358
diff -u -r1.357 -r1.358
--- status.xml 8 Jun 2004 13:09:24 -0000 1.357
+++ status.xml 8 Jun 2004 20:21:38 -0000 1.358
@@ -218,7 +218,7 @@
Portal: Fix problem with bookmarks and CachingURICoplet
</action>
<action dev="SW" type="update">
- A new build property, "build.archive-sources", allows to include java
source files
+ A new build property, "include.sources-in-jars", allows to include java
source files
in jar archives. Useful when using a non-released version to know what
sources
are used.
</action>
1.41 +1 -0 cocoon-2.1/build.properties
Index: build.properties
===================================================================
RCS file: /home/cvs/cocoon-2.1/build.properties,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- build.properties 3 Jun 2004 12:31:30 -0000 1.40
+++ build.properties 8 Jun 2004 20:21:39 -0000 1.41
@@ -33,6 +33,7 @@
#exclude.deprecated=true
#exclude.documentation=true
#exclude.javadocs=true
+#include.sources-in-jars=true
# ---- Configuration
-----------------------------------------------------------