Updated version + deps

This commit is contained in:
Robinson 2022-03-05 13:40:23 +01:00
parent fdb5af2123
commit 812ab13758
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
2 changed files with 5 additions and 3 deletions

View File

@ -23,7 +23,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>VaadinUndertow</artifactId>
<version>14.7.4</version>
<version>14.8</version>
</dependency>
</dependencies>
```
@ -33,7 +33,7 @@ Gradle Info
```
dependencies {
...
implementation "com.dorkbox:VaadinUndertow:14.7.4"
implementation "com.dorkbox:VaadinUndertow:14.8"
}
````

View File

@ -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"
}