Skip to content

Commit 8c2e9fb

Browse files
committed
Release 4.1.7
1 parent ec48a61 commit 8c2e9fb

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

README.md

Lines changed: 8 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)
44
![Maintenance Status](https://img.shields.io/maintenance/yes/2025.svg)
5-
[![Latest release](https://img.shields.io/badge/release-4.1.6-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.1.6)
6-
[![Snapshot](https://img.shields.io/badge/current-4.1.7--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/master)
5+
[![Latest release](https://img.shields.io/badge/release-4.1.7-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.1.7)
6+
[![Snapshot](https://img.shields.io/badge/current-4.1.8--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/master)
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.
@@ -22,6 +22,12 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g
2222

2323
#### :star: What's new
2424

25+
### Version 4.1.7
26+
July 22, 2025, Gretty 4.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).
27+
28+
* Check for Groovy >= 4 and use correct coordinates (thanks [@octylFractal](https://github.com/octylFractal))
29+
* Fix clobbering webapp classpath with Gretty stuff (thanks [@Artur-](https://github.com/Artur-) and [@Yasushi](https://github.com/Yasushi))
30+
2531
### Version 4.1.6
2632
December 6, 2024, Gretty 4.1.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).
2733

changes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
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 4.1.7
6+
7+
* Check for Groovy >= 4 and use correct coordinates (thanks [@octylFractal](https://github.com/octylFractal))
8+
* Fix clobbering webapp classpath with Gretty stuff (thanks [@Artur-](https://github.com/Artur-) and [@Yasushi](https://github.com/Yasushi))
9+
510
### Version 4.1.6
611

712
* Fix product runs (thanks [@aindlq](https://github.com/aindlq))

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 = 4.1.7-SNAPSHOT
9+
version = 4.1.7
1010
jetty11_version = 11.0.17
1111
jetty11_servlet_api_version = 5.0.0
1212
tomcat10_version = 10.1.42

pluginScripts/gretty-4.1.7.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:4.1.7'
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:4.1.7-SNAPSHOT'
8+
classpath 'org.gretty:gretty:4.1.8-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:4.1.6'
7+
classpath 'org.gretty:gretty:4.1.7'
88
}
99
}
1010

0 commit comments

Comments
 (0)