dion 2002/06/05 23:04:45
Modified: src/templates/build/plugins/core build.xml
src/templates/build/plugins/test build.xml
src/templates/build/plugins/iutest build.xml
src/templates/build/plugins/j2ee build.xml
src/templates/build/plugins/struts build.xml
src/templates/build/plugins/metrics build.xml
src/templates/build/plugins/docs build.xml
Log:
Fixed bug where once callback.ok was set, it was always being set. This
was caused by the exportRefs and exportAll properties of maven-ant, and
my misunderstanding of the defaults.
Revision Changes Path
1.14 +26 -26 jakarta-turbine-maven/src/templates/build/plugins/core/build.xml
Index: build.xml
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/core/build.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- build.xml 6 Jun 2002 05:25:43 -0000 1.13
+++ build.xml 6 Jun 2002 06:04:44 -0000 1.14
@@ -58,7 +58,7 @@
<target name="pre-env-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-env.buildFile}" />
<property name="buildTarget"
@@ -70,7 +70,7 @@
<target name="post-env-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-env.buildFile}" />
<property name="buildTarget"
@@ -107,7 +107,7 @@
<target name="pre-update-jars-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-update-jars.buildFile}" />
<property name="buildTarget"
@@ -119,7 +119,7 @@
<target name="post-update-jars-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-update-jars.buildFile}" />
<property name="buildTarget"
@@ -190,7 +190,7 @@
<target name="pre-maven-update-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-maven-update.buildFile}" />
<property name="buildTarget"
@@ -202,7 +202,7 @@
<target name="post-maven-update-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-maven-update.buildFile}" />
<property name="buildTarget"
@@ -271,7 +271,7 @@
<target name="pre-validate-pom-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-validate-pom.buildFile}" />
<property name="buildTarget"
@@ -283,7 +283,7 @@
<target name="post-validate-pom-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-validate-pom.buildFile}" />
<property name="buildTarget"
@@ -364,7 +364,7 @@
<target name="pre-compile-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-compile.buildFile}" />
<property name="buildTarget"
@@ -376,7 +376,7 @@
<target name="post-compile-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-compile.buildFile}" />
<property name="buildTarget"
@@ -479,7 +479,7 @@
<target name="pre-check-source-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-check-source.buildFile}" />
<property name="buildTarget"
@@ -491,7 +491,7 @@
<target name="post-check-source-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-check-source.buildFile}" />
<property name="buildTarget"
@@ -599,7 +599,7 @@
<target name="pre-jar-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-jar.buildFile}" />
<property name="buildTarget"
@@ -611,7 +611,7 @@
<target name="post-jar-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-jar.buildFile}" />
<property name="buildTarget"
@@ -680,7 +680,7 @@
<target name="pre-dist-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-dist.buildFile}" />
<property name="buildTarget"
@@ -692,7 +692,7 @@
<target name="post-dist-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-dist.buildFile}" />
<property name="buildTarget"
@@ -774,7 +774,7 @@
<target name="pre-dist-build-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-dist-build.buildFile}" />
<property name="buildTarget"
@@ -786,7 +786,7 @@
<target name="post-dist-build-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-dist-build.buildFile}" />
<property name="buildTarget"
@@ -930,7 +930,7 @@
<target name="pre-install-jar-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-install-jar.buildFile}" />
<property name="buildTarget"
@@ -942,7 +942,7 @@
<target name="post-install-jar-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-install-jar.buildFile}" />
<property name="buildTarget"
@@ -976,7 +976,7 @@
<target name="pre-gump-descriptor-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-gump-descriptor.buildFile}" />
<property name="buildTarget"
@@ -988,7 +988,7 @@
<target name="post-gump-descriptor-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-gump-descriptor.buildFile}" />
<property name="buildTarget"
@@ -1030,7 +1030,7 @@
<target name="pre-clean-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-clean.buildFile}" />
<property name="buildTarget"
@@ -1042,7 +1042,7 @@
<target name="post-clean-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-clean.buildFile}" />
<property name="buildTarget"
@@ -1110,7 +1110,7 @@
<target name="pre-announce-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.pre-announce.buildFile}" />
<property name="buildTarget"
@@ -1122,7 +1122,7 @@
<target name="post-announce-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.core.callback.post-announce.buildFile}" />
<property name="buildTarget"
1.6 +4 -4 jakarta-turbine-maven/src/templates/build/plugins/test/build.xml
Index: build.xml
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/test/build.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- build.xml 6 Jun 2002 05:20:56 -0000 1.5
+++ build.xml 6 Jun 2002 06:04:44 -0000 1.6
@@ -94,7 +94,7 @@
<target name="pre-test-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.test.callback.pre-test.buildFile}" />
<property name="buildTarget"
@@ -106,7 +106,7 @@
<target name="post-test-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.test.callback.post-test.buildFile}" />
<property name="buildTarget"
@@ -197,7 +197,7 @@
<target name="pre-run-singletest-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.test.callback.pre-run-singletest.buildFile}" />
<property name="buildTarget"
@@ -209,7 +209,7 @@
<target name="post-run-singletest-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.test.callback.post-run-singletest.buildFile}" />
<property name="buildTarget"
1.5 +2 -2
jakarta-turbine-maven/src/templates/build/plugins/iutest/build.xml
Index: build.xml
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/iutest/build.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- build.xml 5 Jun 2002 00:50:24 -0000 1.4
+++ build.xml 6 Jun 2002 06:04:44 -0000 1.5
@@ -91,7 +91,7 @@
<target name="pre-iutest-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.iutest.callback.pre-iutest.buildFile}" />
<property name="buildTarget"
@@ -109,7 +109,7 @@
<target name="post-iutest-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.iutest.callback.post-iutest.buildFile}" />
<property name="buildTarget"
1.14 +8 -8 jakarta-turbine-maven/src/templates/build/plugins/j2ee/build.xml
Index: build.xml
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/j2ee/build.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- build.xml 5 Jun 2002 00:50:24 -0000 1.13
+++ build.xml 6 Jun 2002 06:04:44 -0000 1.14
@@ -88,7 +88,7 @@
<!-- process any user specified pre-war callback -->
<target name="pre-war-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.j2ee.callback.pre-war.buildFile}" />
<property name="buildTarget"
@@ -144,7 +144,7 @@
<!-- process any user specified post-war callback -->
<target name="post-war-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.j2ee.callback.post-war.buildFile}" />
<property name="buildTarget"
@@ -189,7 +189,7 @@
<!-- process any user specified pre-validate war callback -->
<target name="pre-validate-war-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.j2ee.callback.pre-validate-war.buildFile}" />
<property name="buildTarget"
@@ -211,7 +211,7 @@
<!-- process any user specified post-validate war callback -->
<target name="post-validate-war-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.j2ee.callback.post-validate-war.buildFile}" />
<property name="buildTarget"
@@ -265,7 +265,7 @@
<!-- process any user specified pre ear callback -->
<target name="pre-ear-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.j2ee.callback.pre-ear.buildFile}" />
<property name="buildTarget"
@@ -308,7 +308,7 @@
<!-- process any user specified post ear callback -->
<target name="post-ear-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.j2ee.callback.post-ear.buildFile}" />
<property name="buildTarget"
@@ -364,7 +364,7 @@
<!-- process any user defined pre ejb jar callback -->
<target name="pre-ejb-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.j2ee.callback.pre-ejb.buildFile}" />
<property name="buildTarget"
@@ -502,7 +502,7 @@
<!-- process any user defined post ejb jar callback -->
<target name="post-ejb-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.j2ee.callback.post-ejb.buildFile}" />
<property name="buildTarget"
1.8 +2 -2
jakarta-turbine-maven/src/templates/build/plugins/struts/build.xml
Index: build.xml
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/struts/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 5 Jun 2002 00:50:23 -0000 1.7
+++ build.xml 6 Jun 2002 06:04:44 -0000 1.8
@@ -87,7 +87,7 @@
<!-- process any user defined pre validation callback -->
<target name="pre-validate-struts-war-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.struts.callback.pre-validate-struts-war.buildFile}" />
<property name="buildTarget"
@@ -108,7 +108,7 @@
<!-- process any user defined post validation callback -->
<target name="post-validate-struts-war-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.struts.callback.post-validate-struts-war.buildFile}" />
<property name="buildTarget"
1.6 +2 -2
jakarta-turbine-maven/src/templates/build/plugins/metrics/build.xml
Index: build.xml
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/metrics/build.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- build.xml 5 Jun 2002 00:50:24 -0000 1.5
+++ build.xml 6 Jun 2002 06:04:45 -0000 1.6
@@ -65,7 +65,7 @@
<target name="pre-metrics-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.metrics.callback.pre-metrics.buildFile}" />
<property name="buildTarget"
@@ -77,7 +77,7 @@
<target name="post-metrics-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportAll="false" exportRefs="false">
<property name="buildFile"
value="${maven.metrics.callback.post-metrics.buildFile}" />
<property name="buildTarget"
1.11 +22 -22 jakarta-turbine-maven/src/templates/build/plugins/docs/build.xml
Index: build.xml
===================================================================
RCS file:
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/docs/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- build.xml 5 Jun 2002 00:50:24 -0000 1.10
+++ build.xml 6 Jun 2002 06:04:45 -0000 1.11
@@ -59,7 +59,7 @@
<target name="pre-docs-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-docs.buildFile}" />
<property name="buildTarget"
@@ -71,7 +71,7 @@
<target name="post-docs-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-docs.buildFile}" />
<property name="buildTarget"
@@ -90,7 +90,7 @@
<target name="pre-docs-quick-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-docs-quick.buildFile}" />
<property name="buildTarget"
@@ -102,7 +102,7 @@
<target name="post-docs-quick-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-docs-quick.buildFile}" />
<property name="buildTarget"
@@ -150,7 +150,7 @@
<target name="pre-cross-ref-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-cross-ref.buildFile}" />
<property name="buildTarget"
@@ -162,7 +162,7 @@
<target name="post-cross-ref-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-cross-ref.buildFile}" />
<property name="buildTarget"
@@ -203,7 +203,7 @@
<target name="pre-task-list-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-task-list.buildFile}" />
<property name="buildTarget"
@@ -215,7 +215,7 @@
<target name="post-task-list-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-task-list.buildFile}" />
<property name="buildTarget"
@@ -247,7 +247,7 @@
<target name="pre-change-log-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-change-log.buildFile}" />
<property name="buildTarget"
@@ -259,7 +259,7 @@
<target name="post-change-log-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-change-log.buildFile}" />
<property name="buildTarget"
@@ -292,7 +292,7 @@
<target name="pre-activity-log-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-activity-log.buildFile}" />
<property name="buildTarget"
@@ -304,7 +304,7 @@
<target name="post-activity-log-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-activity-log.buildFile}" />
<property name="buildTarget"
@@ -512,7 +512,7 @@
<target name="pre-fo-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-fo.buildFile}" />
<property name="buildTarget"
@@ -524,7 +524,7 @@
<target name="post-fo-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-fo.buildFile}" />
<property name="buildTarget"
@@ -567,7 +567,7 @@
<target name="pre-pdf-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-pdf.buildFile}" />
<property name="buildTarget"
@@ -579,7 +579,7 @@
<target name="post-pdf-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-pdf.buildFile}" />
<property name="buildTarget"
@@ -614,7 +614,7 @@
<target name="pre-site-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-site.buildFile}" />
<property name="buildTarget"
@@ -626,7 +626,7 @@
<target name="post-site-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-site.buildFile}" />
<property name="buildTarget"
@@ -668,7 +668,7 @@
<target name="pre-deploy-site-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-deploy-site.buildFile}" />
<property name="buildTarget"
@@ -680,7 +680,7 @@
<target name="post-deploy-site-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-deploy-site.buildFile}" />
<property name="buildTarget"
@@ -732,7 +732,7 @@
<target name="pre-javadocs-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.pre-javadocs.buildFile}" />
<property name="buildTarget"
@@ -744,7 +744,7 @@
<target name="post-javadocs-callback">
<maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
- target="callback" inheritAll="true" inheritRefs="true">
+ target="callback" inheritRefs="true" exportRefs="false" exportAll="false">
<property name="buildFile"
value="${maven.docs.callback.post-javadocs.buildFile}" />
<property name="buildTarget"
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>