This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new 2a1aede943 Include binaries for Windows in files uploaded to Maven Central 2a1aede943 is described below commit 2a1aede9439b92f890fa233e329e3f2c205ddfaa 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 e06320673f..eee567b625 100644 --- a/res/maven/mvn-pub.xml +++ b/res/maven/mvn-pub.xml @@ -209,6 +209,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--> @@ -223,6 +225,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" /> @@ -241,6 +251,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"/> @@ -249,6 +263,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 e532d18f2d..35ac8ad4cd 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 8.5.90 (schultz)" rtext="release in progress"> <subsection name="Catalina"> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org