Skip to content

Commit

Permalink
release 3.0.2
Browse files Browse the repository at this point in the history
Signed-off-by: Brett Randall <[email protected]>
  • Loading branch information
javabrett committed Mar 29, 2020
1 parent a6c2a4a commit 569384c
Show file tree
Hide file tree
Showing 6 changed files with 37 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

March 29, 2020, Gretty 3.0.2 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 brings Java 14 support, deprecation fixes for Gradle 6.x and bug-fixes.

https://bintray.com/javabrett/maven/org.gretty/view

December 2, 2019, Gretty 3.0.1 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 contains further fixes for Gradle 6.0 support.
Expand Down
12 changes: 12 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

[![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.2

* Fixes replacing use of deprecated Gradle properties.

* Upgraded defaults to latest versions of Jetty and Tomcat.

* Groovy updated to 2.5.10 along with dependencies.

* Choose random free ports atomically to fix bug with random port generation.

* Java 14 support.

### Version 3.0.1

* Gradle 6.0 fixes - thanks @boris-petrov
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.2-SNAPSHOT
version = 3.0.2
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.0.2.plugin
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
buildscript {
repositories {
jcenter()
}

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

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.2-SNAPSHOT'
classpath 'org.gretty:gretty:3.0.3-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.1'
classpath 'org.gretty:gretty:3.0.2'
}
}

Expand Down

0 comments on commit 569384c

Please sign in to comment.