Skip to content

Commit

Permalink
Update questdb version to 7.1.3 (#7145)
Browse files Browse the repository at this point in the history
Also, questdb version 7.1 requires java 11 and the test has been
configured to use it.
  • Loading branch information
eddumelendez committed Jun 6, 2023
1 parent d89ce98 commit cfab5af
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion modules/questdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,20 @@ dependencies {
testImplementation 'org.postgresql:postgresql:42.6.0'
testImplementation project(':jdbc-test')
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.questdb:questdb:7.0.1-jdk8'
testImplementation 'org.questdb:questdb:7.1.3'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
}

test {
javaLauncher = javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(11)
}
}

compileTestJava {
javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(11)
}
options.release.set(11)
}

0 comments on commit cfab5af

Please sign in to comment.