Skip to content

Commit

Permalink
release 2.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Brett Randall <[email protected]>
  • Loading branch information
javabrett committed Nov 28, 2018
1 parent ba7722b commit 57e0ae0
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g

#### :star: What's new

November 28, 2018, Gretty 2.3.0 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 adds support for Gradle 5.0, which was released this week! Please raise an issue if you find any issues running Gretty 2.3+ with Gradle 5.0.

See also: [complete list of changes](changes.md) for more information.

May 21, 2018, Gretty(.org) 2.2.0 is out and immediately available at [Gradle Plugins](https://plugins.gradle.org/plugin/org.gretty) and [Bintray](https://bintray.com/javabrett/maven/org.gretty/view).

* Changes in this version:
Expand Down
20 changes: 20 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

[![logo](https://gretty-gradle-plugin.github.io/gretty-doc/images/gretty_logo.png "gretty logo")](https://github.com/gretty-gradle-plugin/gretty)

### Version 2.3.0

* Gradle 5.0 support (#93). Thanks Martin Chalupa (@chali) for bug-fixes and testing.

* buildProduct fix for Gradle 5.0 (#91). Thanks Martin Chalupa (@chali).

* Added getFreeRandomPort() support for httpsPort (#85). Thanks Josh Cummings (@jzheaux).

* Default container version updates:

- jetty93_version = 9.3.25.v20180904
- jetty94_version = 9.4.14.v20181114
- tomcat8_version = 8.0.53
- tomcat85_version = 8.5.35
- tomcat9_version = 9.0.13

* Support is removed for running Jetty 7.x containers in this release. Jetty 7.x is EOL, please upgrade.

* A modest performance improvement was achieved via #46 (Add `@CompileStatic` to most classes).

### Version 2.2.0

* Bumped default Tomcat 9 version to 9.0.6 (was 9.0.5).
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 = 2.3.0-SNAPSHOT
version = 2.3.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-2.3.0.plugin
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
buildscript {
repositories {
jcenter()
}

dependencies {
classpath 'org.gretty:gretty:2.3.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:3.0.0-SNAPSHOT'
classpath 'org.gretty:gretty:2.4.0-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:2.2.0'
classpath 'org.gretty:gretty:2.3.0'
}
}

Expand Down

0 comments on commit 57e0ae0

Please sign in to comment.