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.


git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc8.0.x/trunk@1835602 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/res/maven/mvn-pub.xml b/res/maven/mvn-pub.xml
index b8504a5..9ab1e7a 100644
--- a/res/maven/mvn-pub.xml
+++ b/res/maven/mvn-pub.xml
@@ -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" />