From 334dc34b9bb2a3ba29cc44288626ad6047ed98b7 Mon Sep 17 00:00:00 2001 From: Robinson Date: Sat, 5 Mar 2022 13:40:23 +0100 Subject: [PATCH] Updated version + deps --- README.md | 4 ++-- build.gradle.kts | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bf068ed..abb3751 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Maven Info com.dorkbox VaadinUndertow - 14.7.4 + 14.8 ``` @@ -33,7 +33,7 @@ Gradle Info ``` dependencies { ... - implementation "com.dorkbox:VaadinUndertow:14.7.4" + implementation "com.dorkbox:VaadinUndertow:14.8" } ```` diff --git a/build.gradle.kts b/build.gradle.kts index 166ede6..23646e0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -39,7 +39,7 @@ object Extras { const val group = "com.dorkbox" const val name = "VaadinUndertow" const val id = "VaadinUndertow" - const val version = "14.7.4" + const val version = "14.7.5" const val vendor = "Dorkbox LLC" const val vendorUrl = "https://dorkbox.com" @@ -51,6 +51,8 @@ object Extras { // these BOTH must match the version information in the VaadinApplication.kt file (this is automatically passed into the plugin) const val vaadinVer = "14.7.8" + + // These MUST be in lock-step with what the GradleVaadin launcher defines, otherwise horrific errors can occur. const val undertowVer = "2.2.16.Final" }