You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2016/11/14 19:50:40 UTC

svn commit: r1769684 - in /poi/trunk: build.xml src/integrationtest/build.xml

Author: centic
Date: Mon Nov 14 19:50:39 2016
New Revision: 1769684

URL: http://svn.apache.org/viewvc?rev=1769684&view=rev
Log:
Fix missing directory 'maven' in source release packages, adjust the related test-Ant-script to call 'assemble' instead of 'jar' to catch something like this in the future.
Also exclude some more intermediate files/directories from the source package.

Modified:
    poi/trunk/build.xml
    poi/trunk/src/integrationtest/build.xml

Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1769684&r1=1769683&r2=1769684&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Mon Nov 14 19:50:39 2016
@@ -1958,8 +1958,11 @@ under the License.
             <mappedresources cache="true">
                 <fileset dir="." excludes="build/**,
                       dist*/**,
-                      maven/**,
                       lib/**,
+                      bin/**,
+                      out/**,
+                      sonar/**/target/**,
+                      sonar/*/src/**,
                       compile-lib/**,
                       ooxml-lib/**,
                       scripts/**,
@@ -1970,6 +1973,10 @@ under the License.
                       *.lnk,
                       *.rdf,
                       *.swp,
+                      *.launch,
+                      *.log,
+                      .gradle/**,
+                      .idea/**,
                       .settings/**,
                       .classpath,
                       .settings/**,

Modified: poi/trunk/src/integrationtest/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/src/integrationtest/build.xml?rev=1769684&r1=1769683&r2=1769684&view=diff
==============================================================================
--- poi/trunk/src/integrationtest/build.xml (original)
+++ poi/trunk/src/integrationtest/build.xml Mon Nov 14 19:50:39 2016
@@ -77,7 +77,7 @@ Before running this, you should execute
 
         <!-- finally call Ant on the extracted source to check if we can build the packages -->
         <echo message="Building in temporary dir ${dirversion}/"/>
-        <ant dir="${dirversion}" target="jar" inheritAll="false" inheritRefs="false" useNativeBasedir="true"/>
+        <ant dir="${dirversion}" target="assemble" inheritAll="false" inheritRefs="false" useNativeBasedir="true"/>
     </target>
 
     <target name="runCompileTest" depends="init" description="Verify that we can compile most examples without including excelant or scratchpad jars">



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