From 229ccc82751574ccac5dd11160a78ca4e7f43fec Mon Sep 17 00:00:00 2001 From: Boris Petrov Date: Thu, 15 Sep 2022 14:43:28 +0300 Subject: [PATCH] Release 3.0.9 --- README.md | 10 ++++++++-- changes.md | 4 ++++ gradle.properties | 2 +- pluginScripts/gretty-3.0.9.plugin | 16 ++++++++++++++++ pluginScripts/gretty-SNAPSHOT.plugin | 2 +- pluginScripts/gretty.plugin | 2 +- 6 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 pluginScripts/gretty-3.0.9.plugin diff --git a/README.md b/README.md index 9f872a59..9cd798d2 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/2022.svg) -[![Latest release](https://img.shields.io/badge/release-3.0.8-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.0.8) -[![Snapshot](https://img.shields.io/badge/current-3.0.9--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/gretty-3.x) +[![Latest release](https://img.shields.io/badge/release-3.0.9-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.0.9) +[![Snapshot](https://img.shields.io/badge/current-3.0.10--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 +September 15, 2022, Gretty 3.0.9 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: + +* Replace internal Gradle API usage with public API #263 + June 1, 2022, Gretty 3.0.8 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 f7a3a9c3..3248549a 100644 --- a/changes.md +++ b/changes.md @@ -2,6 +2,10 @@ [![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.9 + +* Replace internal Gradle API usage with public API #263 + ### Version 3.0.8 * Added exclusion patterns for `commons-cli` and `commons-io` classes to FilteringClassLoader #258 diff --git a/gradle.properties b/gradle.properties index 5df75b92..92c1b3df 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.9-SNAPSHOT +version = 3.0.9 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.9.plugin b/pluginScripts/gretty-3.0.9.plugin new file mode 100644 index 00000000..bbcbc71b --- /dev/null +++ b/pluginScripts/gretty-3.0.9.plugin @@ -0,0 +1,16 @@ +buildscript { + repositories { + mavenCentral() + } + + dependencies { + classpath 'org.gretty:gretty:3.0.9' + } +} + +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 11d99db0..83cb4340 100644 --- a/pluginScripts/gretty-SNAPSHOT.plugin +++ b/pluginScripts/gretty-SNAPSHOT.plugin @@ -5,7 +5,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:3.0.9-SNAPSHOT' + classpath 'org.gretty:gretty:3.0.10-SNAPSHOT' } } diff --git a/pluginScripts/gretty.plugin b/pluginScripts/gretty.plugin index 2301f50d..bbcbc71b 100644 --- a/pluginScripts/gretty.plugin +++ b/pluginScripts/gretty.plugin @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:3.0.8' + classpath 'org.gretty:gretty:3.0.9' } }