This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 96d528fb0e Include binaries for Windows in files uploaded to Maven Central 96d528fb0e is described below commit 96d528fb0eb81f23cfa07930397060258960db91 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 | 4 ++++ 2 files changed, 20 insertions(+) diff --git a/res/maven/mvn-pub.xml b/res/maven/mvn-pub.xml index f7c6a9e190..f9717cd9c8 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 39a05569f3..55acac0c04 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -157,6 +157,10 @@ <add> Improvements to French translations. (remm) </add> + <add> + Include the Windows specific binary distributions in the files uploaded + to Maven Central. (markt) + </add> </changelog> </subsection> </section> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org