You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by gw...@apache.org on 2019/03/22 21:28:10 UTC

svn commit: r1856081 - in /xmlbeans/trunk: README.txt build.xml

Author: gwoolsey
Date: Fri Mar 22 21:28:10 2019
New Revision: 1856081

URL: http://svn.apache.org/viewvc?rev=1856081&view=rev
Log:
fix build typo, exclude some more potential files

Modified:
    xmlbeans/trunk/README.txt
    xmlbeans/trunk/build.xml

Modified: xmlbeans/trunk/README.txt
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/README.txt?rev=1856081&r1=1856080&r2=1856081&view=diff
==============================================================================
--- xmlbeans/trunk/README.txt (original)
+++ xmlbeans/trunk/README.txt Fri Mar 22 21:28:10 2019
@@ -23,6 +23,7 @@ Layout of the tree:
 - xbeanenv.sh   sets the XMLBEANS_HOME environment variable on Unix
 - bin           contains useful command-line scripts for Win and Unix
 - docs          contains several documentation files
+- javadocs      API documentation
 - maven-plugin  source and documentation on using the xmlbeans2 Maven plugin
 - samples       contains ... samples
 - src           the source code for XmlBeans, organized by area

Modified: xmlbeans/trunk/build.xml
URL: http://svn.apache.org/viewvc/xmlbeans/trunk/build.xml?rev=1856081&r1=1856080&r2=1856081&view=diff
==============================================================================
--- xmlbeans/trunk/build.xml (original)
+++ xmlbeans/trunk/build.xml Fri Mar 22 21:28:10 2019
@@ -511,14 +511,14 @@
         <property name="prefix" value="xmlbeans-${version.base}"/>
 
         <zip destfile="build/xmlbeans-src-${version.base}-${tstamp.dist}.zip" update="false">
-            <zipfileset dir="." excludes="build/**,tmp/**,.idea/**,bin/**,lib/**,compile-lib/**,/src/shell,build.javacheck.xml,release-guide.txt" prefix="${prefix}"/>
+            <zipfileset dir="." excludes="build/**,tmp/**,.idea/**,bin/**,lib/**,compile-lib/**,/src/shell/**,.settings/**,.project,build.javacheck.xml,release-guide.txt" prefix="${prefix}"/>
         	<zipfileset dir="src/shell" prefix="${prefix}/bin" />
-            <fileset dir="build/javadocs" prefix="${prefix}/javadocs" />
+            <zipfileset dir="build/javadocs" prefix="${prefix}/javadocs" />
         </zip>
         <tar destfile="build/xmlbeans-src-${version.base}-${tstamp.dist}.tgz" compression="gzip">
-            <tarfileset dir="." excludes="build/**,tmp/**,.idea/**,bin/**,lib/**,compile-lib/**,/src/shell,build.javacheck.xml,release-guide.txt" prefix="${prefix}"/>
+            <tarfileset dir="." excludes="build/**,tmp/**,.idea/**,bin/**,lib/**,compile-lib/**,/src/shell/**,.settings/**,.project,build.javacheck.xml,release-guide.txt" prefix="${prefix}"/>
         	<tarfileset dir="src/shell" prefix="${prefix}/bin" />
-            <fileset dir="build/javadocs" prefix="${prefix}/javadocs" />
+            <tarfileset dir="build/javadocs" prefix="${prefix}/javadocs" />
         </tar>
 
         <zip destfile="build/xmlbeans-bin-${version.base}-${tstamp.dist}.zip" update="false">
@@ -536,7 +536,7 @@
                 <include name="xmlbeans-${version.base}-sources.jar"/>
             </zipfileset>
         </zip>
-        <tar destfile="build/xmlbeans-bin-${version.base}-${tstamp.dist}.zip" compression="gzip">
+        <tar destfile="build/xmlbeans-bin-${version.base}-${tstamp.dist}.tgz" compression="gzip">
             <tarfileset dir="." includes="LICENSE.txt,NOTICE.txt,docs/**" prefix="${prefix}"/>
             <tarfileset dir="samples" includes="Any/**,DateTime/**,MixedContent/**,OrderMatters/**,SchemaEnum/**,Validation/**,XQueryXPath/**,XsdConfig/**" prefix="${prefix}/samples"/>
             <tarfileset dir="src/shell" prefix="${prefix}/bin"/>



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