From efca7273df0a3af2e7b0017b3bed17034d85d975 Mon Sep 17 00:00:00 2001 From: Boris Petrov Date: Wed, 25 Oct 2023 18:39:03 +0300 Subject: [PATCH] Release 4.1.1 --- README.md | 13 +++++++++++-- changes.md | 6 ++++++ gradle.properties | 2 +- pluginScripts/gretty-4.1.1.plugin | 16 ++++++++++++++++ pluginScripts/gretty-SNAPSHOT.plugin | 2 +- pluginScripts/gretty.plugin | 2 +- 6 files changed, 36 insertions(+), 5 deletions(-) create mode 100644 pluginScripts/gretty-4.1.1.plugin diff --git a/README.md b/README.md index daef9486..1317f876 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ ![Build Status](https://github.com/gretty-gradle-plugin/gretty/workflows/CI/badge.svg) ![Maintenance Status](https://img.shields.io/maintenance/yes/2023.svg) -[![Latest release](https://img.shields.io/badge/release-4.1.0-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.1.0) -[![Snapshot](https://img.shields.io/badge/current-4.1.1--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/master) +[![Latest release](https://img.shields.io/badge/release-4.1.1-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.1.1) +[![Snapshot](https://img.shields.io/badge/current-4.1.2--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/master) [![License](https://img.shields.io/badge/license-MIT-47b31f.svg)](#copyright-and-license) Gretty is a feature-rich Gradle plugin for running web-apps on embedded servlet containers. @@ -22,6 +22,15 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g #### :star: What's new +### Version 4.1.1 +October 25, 2023, Gretty 4.1.1 is out and available at [Gradle Plugins](https://plugins.gradle.org/plugin/org.gretty) and [Maven Central](https://search.maven.org/artifact/org.gretty/gretty). + +* Fix broken `restart` tasks after runner classpath separation + +* Use appropriate class loader for servermanger commands. Thanks to Shane Hird. + +* Upgrade Tomcat version to 10.1.5. Thanks to [@pranav24gupta](https://github.com/pranav24gupta). + ### Version 4.1.0 July 12, 2023, Gretty 4.1.0 is out and available at [Gradle Plugins](https://plugins.gradle.org/plugin/org.gretty) and [Maven Central](https://search.maven.org/artifact/org.gretty/gretty). diff --git a/changes.md b/changes.md index 99e8d603..55722329 100644 --- a/changes.md +++ b/changes.md @@ -2,6 +2,12 @@ [![logo](https://gretty-gradle-plugin.github.io/gretty-doc/images/gretty_logo.png "gretty logo")](https://github.com/gretty-gradle-plugin/gretty) +### Version 4.1.1 + +* Fix broken `restart` tasks after runner classpath separation +* Use appropriate class loader for servermanger commands. Thanks to Shane Hird. +* Upgrade Tomcat version to 10.1.5. Thanks to [@pranav24gupta](https://github.com/pranav24gupta). + ### Version 4.1.0 * Drops Gradle 6 support diff --git a/gradle.properties b/gradle.properties index b3620a02..e7587cd7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ developerId = gretty-gradle-plugin developerName = Andrey Hihlovskiy license = MIT group = org.gretty -version = 4.1.1-SNAPSHOT +version = 4.1.1 jetty11_version = 11.0.17 jetty11_servlet_api_version = 5.0.0 tomcat10_version = 10.1.15 diff --git a/pluginScripts/gretty-4.1.1.plugin b/pluginScripts/gretty-4.1.1.plugin new file mode 100644 index 00000000..7746a203 --- /dev/null +++ b/pluginScripts/gretty-4.1.1.plugin @@ -0,0 +1,16 @@ +buildscript { + repositories { + mavenCentral() + } + + dependencies { + classpath 'org.gretty:gretty:4.1.1' + } +} + +repositories { + mavenCentral() +} + +if (!project.plugins.findPlugin(org.akhikhl.gretty.GrettyPlugin)) + project.apply(plugin: org.akhikhl.gretty.GrettyPlugin) diff --git a/pluginScripts/gretty-SNAPSHOT.plugin b/pluginScripts/gretty-SNAPSHOT.plugin index 8a4fbdec..3008e14a 100644 --- a/pluginScripts/gretty-SNAPSHOT.plugin +++ b/pluginScripts/gretty-SNAPSHOT.plugin @@ -5,7 +5,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:4.1.1-SNAPSHOT' + classpath 'org.gretty:gretty:4.1.2-SNAPSHOT' } } diff --git a/pluginScripts/gretty.plugin b/pluginScripts/gretty.plugin index 4f0a8ec6..7746a203 100644 --- a/pluginScripts/gretty.plugin +++ b/pluginScripts/gretty.plugin @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:4.1.0' + classpath 'org.gretty:gretty:4.1.1' } }