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/10/15 15:00:06 UTC

[xalan-java] branch xalan-j_2_7_1_maint updated: xalanj commit : improving build file, to include lib/endorsed folder within the src distribution. This was one of the review comments, received for the 2.7.3 RC

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 b6aefb04 xalanj commit : improving build file, to include lib/endorsed folder within the src distribution. This was one of the review comments, received for the 2.7.3 RC
b6aefb04 is described below

commit b6aefb04f382f595a5d86e2480a135125de834b5
Author: Mukul Gandhi <ga...@gmail.com>
AuthorDate: Sat Oct 15 20:29:48 2022 +0530

    xalanj commit : improving build file, to include lib/endorsed folder
    within the src distribution. This was one of the review comments,
    received for the 2.7.3 RC
---
 build.xml | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/build.xml b/build.xml
index 920b54ff..54c5408c 100644
--- a/build.xml
+++ b/build.xml
@@ -1279,7 +1279,8 @@ $Id$
   <!-- =================================================================== -->  
   <target name="autodist-mkdirs">
     <mkdir dir="${dist.dir}"/>
-    <mkdir dir="${dist.dir}/lib"/>   
+    <mkdir dir="${dist.dir}/lib"/>
+  	<mkdir dir="${dist.dir}/lib/endorsed"/>
     <mkdir dir="${dist.dir}/samples"/>       
     <mkdir dir="${dist.dir}/src"/>
     <mkdir dir="${dist.dir}/tools"/>     
@@ -1320,12 +1321,19 @@ $Id$
       </fileset>
     </copy>
 
-    <!-- Copy runtime libs; used for source distribution -->    
+    <!-- 1) Copy runtime libs; used for source distribution -->    
     <copy todir="${dist.dir}/lib">
       <fileset dir="${lib.dir}">
         <include name="*.*"/>
       </fileset>
-    </copy>    
+    </copy>
+  	
+  	<!-- 2) Copy runtime libs; used for source distribution -->
+  	<copy todir="${dist.dir}/lib/endorsed">
+  	  <fileset dir="${endorsed.dir}">
+  	     <include name="*.*"/>
+  	  </fileset>
+  	</copy>
 
     <!-- Copy built jars -->
     <copy file="${build.dir}/xalansamples.jar" todir="${dist.dir}/samples"/>


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