Skip to content

Commit 04f2a3f

Browse files
committed
Release 4.1.4
Signed-off-by: Falco Duersch <[email protected]>
1 parent d97a2da commit 04f2a3f

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-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)
44
![Maintenance Status](https://img.shields.io/maintenance/yes/2024.svg)
5-
[![Latest release](https://img.shields.io/badge/release-4.1.3-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.1.3)
6-
[![Snapshot](https://img.shields.io/badge/current-4.1.4--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/master)
5+
[![Latest release](https://img.shields.io/badge/release-4.1.4-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.1.4)
6+
[![Snapshot](https://img.shields.io/badge/current-4.1.5--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,11 @@ If you are new with Gretty, try [getting started](https://gretty-gradle-plugin.g
2222

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

25+
May 22, 2024, Gretty 4.1.4 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).
26+
27+
* Fix jetty redeploy with custom jetty-env.xml
28+
* Support folders under "src/resources" in fastReload configuration property
29+
2530
### Version 4.1.3
2631
March 18, 2024, Gretty 4.1.3 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).
2732

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.4
6+
7+
* Fix jetty redeploy with custom jetty-env.xml
8+
* Support folders under "src/resources" in fastReload configuration property
9+
510
### Version 4.1.3
611

712
* Update Tomcat and Bouncy Castle (thanks to [@pranav24gupta](https://github.com/pranav24gupta))

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.4-SNAPSHOT
9+
version = 4.1.4
1010
jetty11_version = 11.0.17
1111
jetty11_servlet_api_version = 5.0.0
1212
tomcat10_version = 10.1.19

pluginScripts/gretty-4.1.4.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.4'
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.4-SNAPSHOT'
8+
classpath 'org.gretty:gretty:4.1.5-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.3'
7+
classpath 'org.gretty:gretty:4.1.4'
88
}
99
}
1010

0 commit comments

Comments
 (0)