Skip to content

Commit

Permalink
Release 3.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
boris-petrov committed Oct 28, 2021
1 parent 26ad9cf commit 1bfe83d
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![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/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)
[![Latest release](https://img.shields.io/badge/release-3.0.7-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.0.7)
[![Snapshot](https://img.shields.io/badge/current-3.0.7--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)

Expand All @@ -20,6 +20,12 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g

#### :star: What's new

October 28, 2021, Gretty 3.0.7 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:

* Fix inability to build a product due to missing Groovy dependencies (#238)

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
4 changes: 4 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

* Fix inability to build a product due to missing Groovy dependencies (#238)

### 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 = 3.0.7-SNAPSHOT
version = 3.0.7
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.7.plugin
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
buildscript {
repositories {
mavenCentral()
}

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

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.7-SNAPSHOT'
classpath 'org.gretty:gretty:3.0.8-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:3.0.7'
}
}

Expand Down

0 comments on commit 1bfe83d

Please sign in to comment.