You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2023/06/15 09:39:44 UTC

[tomcat] branch 9.0.x updated: Include binaries for Windows in files uploaded to Maven Central

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new afd4fee9b1 Include binaries for Windows in files uploaded to Maven Central
afd4fee9b1 is described below

commit afd4fee9b1badbd573430d0963030b55e478cd66
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Jun 15 10:36:27 2023 +0100

    Include binaries for Windows in files uploaded to Maven Central
---
 res/maven/mvn-pub.xml      | 16 ++++++++++++++++
 webapps/docs/changelog.xml |  8 ++++++++
 2 files changed, 24 insertions(+)

diff --git a/res/maven/mvn-pub.xml b/res/maven/mvn-pub.xml
index d9977e63fb..ac7443dd08 100644
--- a/res/maven/mvn-pub.xml
+++ b/res/maven/mvn-pub.xml
@@ -213,6 +213,8 @@
     <delete file="${pom}.tmp"/>
     <delete file="${pom}.asc"/>
     <delete file="${file}.zip.asc"/>
+    <delete file="${file}-windows-x86.zip.asc"/>
+    <delete file="${file}-windows-x64.zip.asc"/>
     <delete file="${file}.tar.gz.asc"/>
 
     <!--replace the version in the pom-->
@@ -227,6 +229,14 @@
       <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}-windows-x86.zip" />
+      <param name="file.out" value="${file}-windows-x86.zip.asc" />
+    </antcall>
+      <antcall target="-sign" >
+        <param name="file.in" value="${file}-windows-x64.zip" />
+        <param name="file.out" value="${file}-windows-x64.zip.asc" />
+      </antcall>
     <antcall target="-sign" >
       <param name="file.in" value="${file}.tar.gz" />
       <param name="file.out" value="${file}.tar.gz.asc" />
@@ -245,6 +255,10 @@
       </remoterepo>
       <artifact file="${file}.zip" type="zip"/>
       <artifact file="${file}.zip.asc" type="zip.asc" if:set="gpg.passphrase"/>
+      <artifact file="${file}-windows-x86.zip" type="zip" classifier="windows-x86"/>
+      <artifact file="${file}-windows-x86.zip.asc" type="zip.asc" classifier="windows-x86" if:set="gpg.passphrase"/>
+      <artifact file="${file}-windows-x64.zip" type="zip" classifier="windows-x64"/>
+      <artifact file="${file}-windows-x64.zip.asc" type="zip.asc" classifier="windows-x64" if:set="gpg.passphrase"/>
       <artifact file="${file}.tar.gz" type="tar.gz"/>
       <artifact file="${file}.tar.gz.asc" type="tar.gz.asc" if:set="gpg.passphrase"/>
       <artifact file="${pom}.asc" type="pom.asc" if:set="gpg.passphrase"/>
@@ -253,6 +267,8 @@
     <delete file="${pom}.tmp"/>
     <delete file="${pom}.asc"/>
     <delete file="${file}.zip.asc"/>
+    <delete file="${file}-windows-x86.zip.asc"/>
+    <delete file="${file}-windows-x64.zip.asc"/>
     <delete file="${file}.tar.gz.asc"/>
   </target>
 
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index cf17340101..a9fc3a13ea 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -152,6 +152,14 @@
       </add>
     </changelog>
   </subsection>
+  <subsection name="Other">
+    <changelog>
+      <add>
+        Include the Windows specific binary distributions in the files uploaded
+        to Maven Central. (markt)
+      </add>
+    </changelog>
+  </subsection>
 </section>
 <section name="Tomcat 9.0.76 (remm)" rtext="2023-06-09">
   <subsection name="Catalina">


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org