Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.1.2 #301

Merged
merged 1 commit into from
Jan 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
![logo](https://akhikhl.github.io/gretty/media/gretty_logo_1.x.png "gretty logo")

![Build Status](https://github.com/gretty-gradle-plugin/gretty/workflows/CI/badge.svg)
![Maintenance Status](https://img.shields.io/maintenance/yes/2023.svg)
[![Latest release](https://img.shields.io/badge/release-4.1.1-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.1.1)
[![Snapshot](https://img.shields.io/badge/current-4.1.2--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/master)
![Maintenance Status](https://img.shields.io/maintenance/yes/2024.svg)
[![Latest release](https://img.shields.io/badge/release-4.1.2-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/v4.1.2)
[![Snapshot](https://img.shields.io/badge/current-4.1.3--SNAPSHOT-47b31f.svg)](https://github.com/gretty-gradle-plugin/gretty/tree/master)
[![License](https://img.shields.io/badge/license-MIT-47b31f.svg)](#copyright-and-license)

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

#### :star: What's new

### Version 4.1.2
January 6, 2024, Gretty 4.1.2 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).

* jettyStart throws exception if using jetty-env.xml #299 (special thanks to [@gy-chen](https://github.com/gy-chen).

### Version 4.1.1
October 25, 2023, Gretty 4.1.1 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).

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 4.1.2

* jettyStart throws exception if using jetty-env.xml #299 (special thanks to @gy-chen)

### Version 4.1.1

* Fix broken `restart` tasks after runner classpath separation
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 = 4.1.2-SNAPSHOT
version = 4.1.2
jetty11_version = 11.0.17
jetty11_servlet_api_version = 5.0.0
tomcat10_version = 10.1.15
Expand Down
16 changes: 16 additions & 0 deletions pluginScripts/gretty-4.1.2.plugin
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
buildscript {
repositories {
mavenCentral()
}

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

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:4.1.2-SNAPSHOT'
classpath 'org.gretty:gretty:4.1.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:4.1.1'
classpath 'org.gretty:gretty:4.1.2'
}
}

Expand Down