Skip to content

Commit

Permalink
Release 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
javabrett authored and boris-petrov committed Sep 1, 2021
1 parent e6f7f00 commit 0a90428
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 5 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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:
Expand Down
6 changes: 6 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 16 additions & 0 deletions pluginScripts/gretty-4.0.0.plugin
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion pluginScripts/gretty-SNAPSHOT.plugin
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

dependencies {
classpath 'org.gretty:gretty:4.0.0-SNAPSHOT'
classpath 'org.gretty:gretty:4.0.1-SNAPSHOT'
}
}

Expand Down
2 changes: 1 addition & 1 deletion pluginScripts/gretty.plugin
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}

dependencies {
classpath 'org.gretty:gretty:3.0.6'
classpath 'org.gretty:gretty:4.0.0'
}
}

Expand Down

0 comments on commit 0a90428

Please sign in to comment.