Bump Java version to 11

This commit is contained in:
Aurora Lahtela 2022-05-30 18:40:46 +03:00
parent a36796d9e1
commit 1226aeaf1f
2 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,7 @@ subprojects {
apply plugin: "jacoco"
compileJava {
options.release = 8
options.release = 11
}
ext {
@ -75,6 +75,7 @@ subprojects {
commonsTextVersion = "1.9"
commonsCompressVersion = "1.21"
commonsCodecVersion = "1.15"
caffeineVersion = "3.1.1"
mysqlVersion = "8.0.29"
sqliteVersion = "3.36.0.3"

View File

@ -36,6 +36,7 @@ dependencies {
implementation project(path: ":extensions", configuration: 'shadow')
implementation "org.apache.commons:commons-text:$commonsTextVersion"
implementation "org.apache.commons:commons-compress:$commonsCompressVersion"
implementation "commons-codec:commons-codec:$commonsCodecVersion"
implementation "com.github.ben-manes.caffeine:caffeine:$caffeineVersion"
implementation "com.zaxxer:HikariCP:$hikariVersion"
implementation "org.slf4j:slf4j-nop:$slf4jVersion"