Skip to content

Commit

Permalink
release 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
f4lco committed Nov 11, 2022
1 parent 6ebefef commit 79ab4f9
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 5 deletions.
11 changes: 9 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?branch=gretty-3.x)
![Maintenance Status](https://img.shields.io/maintenance/yes/2022.svg)
[![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)
[![Latest release](https://img.shields.io/badge/release-3.1.0-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.1.0)
[![Snapshot](https://img.shields.io/badge/current-3.1.1--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.
Expand All @@ -20,6 +20,13 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g

#### :star: What's new

November 11, 2022, Gretty 3.1.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:
* Support of the Jetty 10 servlet container
* Reworked classloader concept to stop leakage of Gretty's dependencies onto the webapp classpath
* Dropped support for Logback entirely, because of the slf4j 1.x / 2.x ecosystem split

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:
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 3.1.0

* Support of the Jetty 10 servlet container
* Reworked classloader concept to stop leakage of Gretty's dependencies onto the webapp classpath
* Dropped support for Logback entirely, because of the slf4j 1.x / 2.x ecosystem split

### Version 3.0.9

* Replace internal Gradle API usage with public API #263
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 = 3.0.10-SNAPSHOT
version = 3.1.0
jetty7_version = 7.6.21.v20160908
jetty7_servlet_api_version = 2.5
jetty8_version = 8.1.22.v20160922
Expand Down
16 changes: 16 additions & 0 deletions pluginScripts/gretty-3.1.0.plugin
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
buildscript {
repositories {
mavenCentral()
}

dependencies {
classpath 'org.gretty:gretty:3.1.0'
}
}

repositories {
mavenCentral()
}

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:3.0.10-SNAPSHOT'
classpath 'org.gretty:gretty:3.1.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.9'
classpath 'org.gretty:gretty:3.1.0'
}
}

Expand Down

0 comments on commit 79ab4f9

Please sign in to comment.