You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2017/08/28 20:41:16 UTC

svn commit: r1806505 - /poi/trunk/build.xml

Author: kiwiwings
Date: Mon Aug 28 20:41:16 2017
New Revision: 1806505

URL: http://svn.apache.org/viewvc?rev=1806505&view=rev
Log:
sha512 checksums aren't yet supported by Nexus

Modified:
    poi/trunk/build.xml

Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1806505&r1=1806504&r2=1806505&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Mon Aug 28 20:41:16 2017
@@ -2408,7 +2408,8 @@ under the License.
 
             <copy todir="${repo}">
                 <mappedresources>
-                    <fileset dir="build/dist/maven" includes="@{artifactId}/**"/>
+                	<!-- add sha-512 when nexus rules are updated (1/2) -->
+                    <fileset dir="build/dist/maven" includes="@{artifactId}/**" excludes="**/*.sha512"/>
                     <regexpmapper from="^([^/]+)/(.*)$$" to="org/apache/poi/\1/${version.id}/\2" handledirsep="true"/>
                 </mappedresources>
             </copy>
@@ -2434,10 +2435,11 @@ under the License.
     <lastUpdated>${lastUpdated}</lastUpdated>
   </versioning>
 </metadata>]]></echo>
-            <fixcrlf srcdir="${metadir}" includes="maven-metadata.xml" eol="unix" eof="remove" />
-            <checksum algorithm="SHA-512" fileext=".sha512" format="MD5SUM">
+            <fixcrlf srcdir="${metadir}" includes="maven-metadata.xml" eol="unix" eof="remove" />                	<!-- add sha-512 when nexus rules are updated -->
+            <!-- add sha-512 when nexus rules are updated (2/2) -->
+            <!--checksum algorithm="SHA-512" fileext=".sha512" format="MD5SUM">
                 <fileset dir="${metadir}" includes="maven-metadata.xml"/>
-            </checksum>
+            </checksum-->
             <checksum algorithm="sha1" format="MD5SUM">
                 <fileset dir="${metadir}" includes="maven-metadata.xml"/>
             </checksum>



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