This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new 81c69c7f93 Include binaries for Windows in files uploaded to Maven Central 81c69c7f93 is described below commit 81c69c7f937b79653b2264f186eba3ee49cceb24 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 9781949fa5..80e4fa26ee 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 9508acf820..805fbe2a84 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 10.1.10 (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