diff --git a/README.md b/README.md index b294c91d..bb336400 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ ![Build Status](https://github.com/gretty-gradle-plugin/gretty/workflows/CI/badge.svg?branch=gretty-3.x) ![Maintenance Status](https://img.shields.io/maintenance/yes/2023.svg) -[![Latest release](https://img.shields.io/badge/release-3.1.1-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.1.1) -[![Snapshot](https://img.shields.io/badge/current-3.1.2--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/gretty-3.x) +[![Latest release](https://img.shields.io/badge/release-3.1.2-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.1.2) +[![Snapshot](https://img.shields.io/badge/current-3.1.3--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/gretty-3.x) [![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. @@ -20,6 +20,12 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g #### :star: What's new +November 06, 2023, Gretty 3.1.2 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). + +* Changes in this version: +* Fix broken `restart` tasks after runner classpath separation +* Use appropriate class loader for servermanger commands. Thanks to Shane Hird. + December 20, 2022, Gretty 3.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). * Changes in this version: diff --git a/changes.md b/changes.md index e45e6a5a..cccf8c74 100644 --- a/changes.md +++ b/changes.md @@ -2,6 +2,11 @@ [![logo](https://gretty-gradle-plugin.github.io/gretty-doc/images/gretty_logo.png "gretty logo")](https://github.com/gretty-gradle-plugin/gretty) +### Version 3.1.2 + +* Fix broken `restart` tasks after runner classpath separation +* Use appropriate class loader for servermanger commands. Thanks to Shane Hird. + ### Version 3.1.1 * Remove check for missing SLF4J provider (thanks [@ArLau](https://github.com/ArLau)) diff --git a/gradle.properties b/gradle.properties index 79e2353f..90485e46 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ developerId = gretty-gradle-plugin developerName = Andrey Hihlovskiy license = MIT group = org.gretty -version = 3.1.2-SNAPSHOT +version = 3.1.2 jetty7_version = 7.6.21.v20160908 jetty7_servlet_api_version = 2.5 jetty8_version = 8.2.0.v20160908 diff --git a/pluginScripts/gretty-3.1.2.plugin b/pluginScripts/gretty-3.1.2.plugin new file mode 100644 index 00000000..a92ccb5b --- /dev/null +++ b/pluginScripts/gretty-3.1.2.plugin @@ -0,0 +1,16 @@ +buildscript { + repositories { + mavenCentral() + } + + dependencies { + classpath 'org.gretty:gretty:3.1.2' + } +} + +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 940dfd35..6b8873ee 100644 --- a/pluginScripts/gretty-SNAPSHOT.plugin +++ b/pluginScripts/gretty-SNAPSHOT.plugin @@ -5,7 +5,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:3.1.2-SNAPSHOT' + classpath 'org.gretty:gretty:3.1.3-SNAPSHOT' } } diff --git a/pluginScripts/gretty.plugin b/pluginScripts/gretty.plugin index 572a5b3b..a92ccb5b 100644 --- a/pluginScripts/gretty.plugin +++ b/pluginScripts/gretty.plugin @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:3.1.1' + classpath 'org.gretty:gretty:3.1.2' } }