Fixed version/dependencies

This commit is contained in:
Robinson 2021-09-20 04:23:34 +02:00
parent eeae00a400
commit 46d3f1c56c
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
2 changed files with 8 additions and 9 deletions

View File

@ -19,12 +19,6 @@
Copyright 2021
Luke Hutchison
- Vaadin - An open platform for building modern web apps for Java back ends
[The Apache Software License, Version 2.0]
https://github.com/vaadin/
Copyright 2021
Vaadin Ltd.
- VaadinUndertow - Vaadin support for the Undertow web server
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/VaadinUndertow

View File

@ -44,9 +44,13 @@ object Extras {
val buildDate = Instant.now().toString()
const val coroutineVer = "1.4.3"
const val vaadinVer = "14.4.8"
const val mavenVaadinGradleVer = "14.0" // this must match what is in VaadinConfig
const val undertowVer = "2.2.10.Final"
// These MUST be in lock-step, otherwise horrific errors can occur.
const val vaadinVer = "14.4.8"
const val vaadinFlowVer = "2.4.6"
const val mavenVaadinGradleVer = "14.0" // this must match what is in VaadinConfig
}
///////////////////////////////
@ -73,7 +77,8 @@ dependencies {
// Uber-fast, ultra-lightweight Java classpath and module path scanner
implementation("io.github.classgraph:classgraph:4.8.116")
implementation("com.vaadin:vaadin:${Extras.vaadinVer}")
// implementation("com.vaadin:vaadin:${Extras.vaadinVer}") // NOTE: uncomment for testing ONLY
implementation("com.vaadin:flow-server:${Extras.vaadinFlowVer}")
implementation("com.dorkbox:VaadinUndertow:${Extras.mavenVaadinGradleVer}") // this must match what is in VaadinConfig