From 0a90428980ff4930d4e8f3295514eeedd80818b6 Mon Sep 17 00:00:00 2001 From: Brett Randall Date: Tue, 15 Dec 2020 23:10:37 +1100 Subject: [PATCH] Release 4.0.0 --- README.md | 12 ++++++++++-- changes.md | 6 ++++++ gradle.properties | 2 +- pluginScripts/gretty-4.0.0.plugin | 16 ++++++++++++++++ pluginScripts/gretty-SNAPSHOT.plugin | 2 +- pluginScripts/gretty.plugin | 2 +- 6 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 pluginScripts/gretty-4.0.0.plugin diff --git a/README.md b/README.md index 31a0366e6..3a41ca726 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/2021.svg) -[![Latest release](https://img.shields.io/badge/release-3.0.6-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.0.6) -[![Snapshot](https://img.shields.io/badge/current-4.0.0--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/master) +[![Latest release](https://img.shields.io/badge/release-4.0.0-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.0.0) +[![Snapshot](https://img.shields.io/badge/current-4.0.1--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,14 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g #### :star: What's new +September 1, 2021, Gretty 4.0.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). + +* Changes in this version: + +* Gretty requires JDK11+. + +* Gretty supports only Tomcat 10 and Jetty 11 (`Jakarta` versions of the containers). All thanks goes to [@f4lco](https://github.com/f4lco). + July 27, 2021, Gretty 3.0.6 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 da17f218b..4a2f5c723 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.0.0 + +* Gretty requires JDK11+. + +* Gretty supports only Tomcat 10 and Jetty 11 (`Jakarta` versions of the containers). All thanks goes to [@f4lco](https://github.com/f4lco). + ### Version 3.0.6 * JDK 16 support diff --git a/gradle.properties b/gradle.properties index dd11ff190..91325a9bc 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.0.0-SNAPSHOT +version = 4.0.0 jetty11_version = 11.0.3 jetty11_servlet_api_version = 5.0.0 tomcat10_version = 10.0.10 diff --git a/pluginScripts/gretty-4.0.0.plugin b/pluginScripts/gretty-4.0.0.plugin new file mode 100644 index 000000000..8256ed391 --- /dev/null +++ b/pluginScripts/gretty-4.0.0.plugin @@ -0,0 +1,16 @@ +buildscript { + repositories { + jcenter() + } + + dependencies { + classpath 'org.gretty:gretty:4.0.0' + } +} + +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 3d06a73da..254ee9f79 100644 --- a/pluginScripts/gretty-SNAPSHOT.plugin +++ b/pluginScripts/gretty-SNAPSHOT.plugin @@ -5,7 +5,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:4.0.0-SNAPSHOT' + classpath 'org.gretty:gretty:4.0.1-SNAPSHOT' } } diff --git a/pluginScripts/gretty.plugin b/pluginScripts/gretty.plugin index 2353fce6a..7c8e90034 100644 --- a/pluginScripts/gretty.plugin +++ b/pluginScripts/gretty.plugin @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'org.gretty:gretty:3.0.6' + classpath 'org.gretty:gretty:4.0.0' } }