Author: rjung
Date: Tue Jul 10 23:59:17 2018
New Revision: 1835602
URL: http://svn.apache.org/viewvc?rev=1835602&view=rev
Log:
Fix the maven release deploy task: signing fails
for the zip binary artefact, because the zip
file name suffix was missing.
The problem is specific for TC 8.0.x, older
branches use a very different task file,
newer versions do not contain this bug.
Modified:
tomcat/tc8.0.x/trunk/res/maven/mvn-pub.xml
Modified: tomcat/tc8.0.x/trunk/res/maven/mvn-pub.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/res/maven/mvn-pub.xml?rev=1835602&r1=1835601&r2=1835602&view=diff
==============================================================================
--- tomcat/tc8.0.x/trunk/res/maven/mvn-pub.xml (original)
+++ tomcat/tc8.0.x/trunk/res/maven/mvn-pub.xml Tue Jul 10 23:59:17 2018
@@ -170,8 +170,8 @@
<!--sign the zip, the tar.gz and the pom -->
<antcall target="-sign" >
- <param name="file.in" value="@{file}" />
- <param name="file.out" value="@{file}.asc" />
+ <param name="file.in" value="@{file}.zip" />
+ <param name="file.out" value="@{file}.zip.asc" />
</antcall>
<antcall target="-sign" >
<param name="file.in" value="@{file}.tar.gz" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]