From 569384c966fdc6c24c9e54680a5425739be8f749 Mon Sep 17 00:00:00 2001 From: Brett Randall Date: Sun, 29 Mar 2020 22:13:09 +1100 Subject: [PATCH] release 3.0.2 Signed-off-by: Brett Randall --- README.md | 6 ++++++ changes.md | 12 ++++++++++++ gradle.properties | 2 +- pluginScripts/gretty-3.0.2.plugin | 16 ++++++++++++++++ pluginScripts/gretty-SNAPSHOT.plugin | 2 +- pluginScripts/gretty.plugin | 2 +- 6 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 pluginScripts/gretty-3.0.2.plugin diff --git a/README.md b/README.md index 07d06e605..048cfddc0 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,12 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g #### :star: What's new +March 29, 2020, Gretty 3.0.2 is out and available at [Gradle Plugins](https://plugins.gradle.org/plugin/org.gretty) and [Bintray](https://bintray.com/javabrett/maven/org.gretty/view). + +This release brings Java 14 support, deprecation fixes for Gradle 6.x and bug-fixes. + +https://bintray.com/javabrett/maven/org.gretty/view + December 2, 2019, Gretty 3.0.1 is out and available at [Gradle Plugins](https://plugins.gradle.org/plugin/org.gretty) and [Bintray](https://bintray.com/javabrett/maven/org.gretty/view). This release contains further fixes for Gradle 6.0 support. diff --git a/changes.md b/changes.md index d46ce21fd..16d58a539 100644 --- a/changes.md +++ b/changes.md @@ -2,6 +2,18 @@ [![logo](https://gretty-gradle-plugin.github.io/gretty-doc/images/gretty_logo.png "gretty logo")](https://github.com/gretty-gradle-plugin/gretty) +### Version 3.0.2 + +* Fixes replacing use of deprecated Gradle properties. + +* Upgraded defaults to latest versions of Jetty and Tomcat. + +* Groovy updated to 2.5.10 along with dependencies. + +* Choose random free ports atomically to fix bug with random port generation. + +* Java 14 support. + ### Version 3.0.1 * Gradle 6.0 fixes - thanks @boris-petrov diff --git a/gradle.properties b/gradle.properties index 8bbe205a3..2b802565c 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.0.2-SNAPSHOT +version = 3.0.2 jetty7_version = 7.6.21.v20160908 jetty7_servlet_api_version = 2.5 jetty8_version = 8.1.22.v20160922 diff --git a/pluginScripts/gretty-3.0.2.plugin b/pluginScripts/gretty-3.0.2.plugin new file mode 100644 index 000000000..4563d5bb0 --- /dev/null +++ b/pluginScripts/gretty-3.0.2.plugin @@ -0,0 +1,16 @@ +buildscript { + repositories { + jcenter() + } + + dependencies { + classpath 'org.gretty:gretty:3.0.2' + } +} + +repositories { + jcenter() +} + +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 738797ceb..65addd9bf 100644 --- a/pluginScripts/gretty-SNAPSHOT.plugin +++ b/pluginScripts/gretty-SNAPSHOT.plugin @@ -5,7 +5,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:3.0.2-SNAPSHOT' + classpath 'org.gretty:gretty:3.0.3-SNAPSHOT' } } diff --git a/pluginScripts/gretty.plugin b/pluginScripts/gretty.plugin index c765ca1e3..4563d5bb0 100644 --- a/pluginScripts/gretty.plugin +++ b/pluginScripts/gretty.plugin @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:3.0.1' + classpath 'org.gretty:gretty:3.0.2' } }