Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ jetty11 = "11.0.16"
jetty12 = "12.0.6"
jersey3 = "3.1.11"
jmh = "1.37"
# latest version of jOOQ to run tests against
jooqNew = "3.20.6"
jsr107 = "1.1.1"
jsr305 = "3.0.2"
junit = "5.13.4"
Expand Down Expand Up @@ -151,9 +149,7 @@ jersey3Hk2 = { module = "org.glassfish.jersey.inject:jersey-hk2", version.ref =
jersey3TestFrameworkJdkHttp = { module = "org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-jdk-http", version.ref = "jersey3" }
jmhCore = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh" }
jmhAnnotationProcessor = { module = "org.openjdk.jmh:jmh-generator-annprocess", version.ref = "jmh" }
# 3.14.x is the newest version of OSS jOOQ that supports Java 8
jooq = { module = "org.jooq:jooq", version = "3.14.16" }
jooqLatest = { module = "org.jooq:jooq", version.ref = "jooqNew" }
jooq = { module = "org.jooq:jooq", version = "3.20.7" }
jsonPath = { module = "com.jayway.jsonpath:json-path", version = "2.9.0" }
jspecify = { module = "org.jspecify:jspecify", version = "1.0.0" }
jsr107 = { module = "org.jsr107.ri:cache-ri-impl", version.ref = "jsr107" }
Expand Down
3 changes: 2 additions & 1 deletion micrometer-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ dependencies {

optionalApi libs.mongoSync

optionalApi libs.jooq
// 3.14.x is the newest version of OSS jOOQ that supports Java 8
optionalApi 'org.jooq:jooq:3.14.16'

optionalApi libs.kafkaClients
optionalApi libs.kafkaStreams
Expand Down
2 changes: 1 addition & 1 deletion samples/micrometer-samples-jooq/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if (!javaLanguageVersion.canCompileOrRun(21)) {

dependencies {
implementation project(":micrometer-core")
implementation libs.jooqLatest
implementation libs.jooq

testImplementation platform(libs.junitBom)
testImplementation libs.junitJupiter
Expand Down