You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mu...@apache.org on 2022/11/12 12:13:41 UTC

[xalan-java] branch xalan-j_2_7_1_maint updated: xalanj commit : while running the ant fulldist target, running smoketest as part of this build process (that brings in additional sanity to the produced artifacts), and also including tests within *src.zip and *src.tar.gz files that're produced.

This is an automated email from the ASF dual-hosted git repository.

mukulg pushed a commit to branch xalan-j_2_7_1_maint
in repository https://gitbox.apache.org/repos/asf/xalan-java.git


The following commit(s) were added to refs/heads/xalan-j_2_7_1_maint by this push:
     new 4c572fd0 xalanj commit : while running the ant fulldist target, running smoketest as part of this build process (that brings in additional sanity to the produced artifacts), and also including tests within *src.zip and *src.tar.gz files that're produced.
4c572fd0 is described below

commit 4c572fd05ad50d09be675c87207dc48e80709c1e
Author: Mukul Gandhi <ga...@gmail.com>
AuthorDate: Sat Nov 12 17:43:23 2022 +0530

    xalanj commit : while running the ant fulldist target, running smoketest
    as part of this build process (that brings in additional sanity to the
    produced artifacts), and also including tests within *src.zip and
    *src.tar.gz files that're produced.
---
 build.xml | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/build.xml b/build.xml
index 5e8a2dc9..25ea88ba 100644
--- a/build.xml
+++ b/build.xml
@@ -306,6 +306,7 @@ $Id$
     <exclude name="${dist.file}/samples/xsltcejb.jar"/>
     <exclude name="${dist.file}/samples/xsltcservlet.jar"/>    
     <include name="${dist.file}/src/"/>
+  	<include name="${dist.file}/tests/"/>
     <include name="${dist.file}/xdocs/"/>
   </patternset>
 
@@ -1256,7 +1257,7 @@ $Id$
   </target>
 
   <target name="build.std.parts"
-          depends="jar,docs,javadocs,samples,extra.std.samples,xsltc.docs"/>
+          depends="jar,smoketest,docs,javadocs,samples,extra.std.samples,xsltc.docs"/>
           
   <target name="build.std.parts-nodocs"
           depends="jar,samples,extra.std.samples"/>          
@@ -1281,6 +1282,7 @@ $Id$
     <mkdir dir="${dist.dir}"/>
     <mkdir dir="${dist.dir}/lib"/>
   	<mkdir dir="${dist.dir}/lib/endorsed"/>
+  	<mkdir dir="${dist.dir}/tests"/>  	
     <mkdir dir="${dist.dir}/samples"/>       
     <mkdir dir="${dist.dir}/src"/>
     <mkdir dir="${dist.dir}/tools"/>     
@@ -1353,7 +1355,12 @@ $Id$
     <copy file="${build.serializer.jar}" todir="${dist.dir}" />
     
     <copy file="${xmlapis.jar}" todir="${dist.dir}" />  
-    <copy file="${parser.jar}" todir="${dist.dir}" />        
+    <copy file="${parser.jar}" todir="${dist.dir}" />
+  	
+  	<copy file="${test.relpath}/java/build/testxsl.jar" todir="${dist.dir}/lib" />
+  	<copy todir="${dist.dir}/tests">
+  	   <fileset dir="${test.relpath}/tests"/>
+  	</copy>
 
     <copy todir="${dist.dir}">
       <fileset dir="." includes="readme.html,KEYS,build.xml,build.sh,build.bat,commits.xml,


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