Skip to content

Commit 26895c5

Browse files
committed
Release 3.1.8
1 parent 782674c commit 26895c5

File tree

6 files changed

+30
-5
lines changed

6 files changed

+30
-5
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
![Build Status](https://github.com/gretty-gradle-plugin/gretty/workflows/CI/badge.svg?branch=gretty-3.x)
44
![Maintenance Status](https://img.shields.io/maintenance/yes/2025.svg)
5-
[![Latest release](https://img.shields.io/badge/release-3.1.7-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.1.7)
6-
[![Snapshot](https://img.shields.io/badge/current-3.1.8--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/gretty-3.x)
5+
[![Latest release](https://img.shields.io/badge/release-3.1.8-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v3.1.8)
6+
[![Snapshot](https://img.shields.io/badge/current-3.1.9--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/gretty-3.x)
77
[![License](https://img.shields.io/badge/license-MIT-47b31f.svg)](#copyright-and-license)
88

99
Gretty is a feature-rich Gradle plugin for running web-apps on embedded servlet containers.
@@ -20,6 +20,11 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g
2020

2121
#### :star: What's new
2222

23+
September 19, 2025, Gretty 3.1.8 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).
24+
25+
* Changes in this version:
26+
* Gradle 9 support
27+
2328
July 22, 2025, Gretty 3.1.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).
2429

2530
* Changes in this version:

changes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
### Version 3.1.8
6+
7+
* Gradle 9 support
8+
59
### Version 3.1.7
610

711
* Re-publish of 3.1.6

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ developerId = gretty-gradle-plugin
66
developerName = Andrey Hihlovskiy
77
license = MIT
88
group = org.gretty
9-
version = 3.1.8-SNAPSHOT
9+
version = 3.1.8
1010
jetty7_version = 7.6.21.v20160908
1111
jetty7_servlet_api_version = 2.5
1212
jetty8_version = 8.2.0.v20160908

pluginScripts/gretty-3.1.8.plugin

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
buildscript {
2+
repositories {
3+
mavenCentral()
4+
}
5+
6+
dependencies {
7+
classpath 'org.gretty:gretty:3.1.8'
8+
}
9+
}
10+
11+
repositories {
12+
mavenCentral()
13+
}
14+
15+
if (!project.plugins.findPlugin(org.akhikhl.gretty.GrettyPlugin))
16+
project.apply(plugin: org.akhikhl.gretty.GrettyPlugin)

pluginScripts/gretty-SNAPSHOT.plugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath 'org.gretty:gretty:3.1.8-SNAPSHOT'
8+
classpath 'org.gretty:gretty:3.1.9-SNAPSHOT'
99
}
1010
}
1111

pluginScripts/gretty.plugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
}
55

66
dependencies {
7-
classpath 'org.gretty:gretty:3.1.7'
7+
classpath 'org.gretty:gretty:3.1.8'
88
}
99
}
1010

0 commit comments

Comments
 (0)