Skip to content

Commit 913e001

Browse files
committed
build: update jOOQ & fix Gradle 9.0 compatibility issues
With the release of Gradle 9.0.0, we experienced build failures due to deprecated access to plugin conventions (JavaPluginConvention). Ref: https://docs.gradle.org/9.0.0-rc-1/userguide/upgrading_version_8.html#deprecated_access_to_conventions To address this, we: 1. Upgrade jOOQ Gradle plugin from 8.0 to 8.2.2 to avoid deprecation warnings when using Gradle 9.0. Ref: https://github.com/etiennestuder/gradle-jooq-plugin/releases/tag/v8.2.2 2. Upgrade jOOQ from 3.17.7 to 3.19.1 to match the plugin version upgrade. Note: We avoid the latest version of jOOQ because it requires Java 21.
1 parent c54b2c3 commit 913e001

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
ext.junitVersion = '5.9.0'
66
ext.mockitoVersion = '5.2.0'
77
ext.postgresVersion = '42.5.1'
8-
ext.jooqVersion = '3.17.7'
8+
ext.jooqVersion = '3.19.1'
99
ext.guiceVersion = '5.1.0'
1010
}
1111

@@ -14,7 +14,7 @@ plugins {
1414
id 'com.google.protobuf' version "${protobufPlugInVersion}"
1515
id 'war'
1616
id 'idea'
17-
id 'nu.studer.jooq' version '8.0'
17+
id 'nu.studer.jooq' version '8.2.2'
1818
}
1919

2020
repositories {

0 commit comments

Comments
 (0)