File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,15 @@ jobs:
54
54
run : |
55
55
# Print Info
56
56
java -version
57
- gradle --version
57
+ GRADLE_VERSION=$(gradle --version | awk '/^Gradle/ {print $2}' | head -1)
58
+ if [ -z "$GRADLE_VERSION" ]; then
59
+ echo "Failed to extract Gradle version, using default"
60
+ GRADLE_VERSION="9.0"
61
+ fi
62
+ echo "Gradle $GRADLE_VERSION"
58
63
59
64
cd java
60
- gradle wrapper --gradle-version 8.1.1
65
+ gradle wrapper --gradle-version $GRADLE_VERSION
61
66
./gradlew --version
62
67
./gradlew build
63
68
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
ext. junitVersion = ' 5.9.0'
6
6
ext. mockitoVersion = ' 5.2.0'
7
7
ext. postgresVersion = ' 42.5.1'
8
- ext. jooqVersion = ' 3.17.7 '
8
+ ext. jooqVersion = ' 3.19.1 '
9
9
ext. guiceVersion = ' 5.1.0'
10
10
}
11
11
@@ -14,7 +14,7 @@ plugins {
14
14
id ' com.google.protobuf' version " ${ protobufPlugInVersion} "
15
15
id ' war'
16
16
id ' idea'
17
- id ' nu.studer.jooq' version ' 8.0 '
17
+ id ' nu.studer.jooq' version ' 8.2.2 '
18
18
}
19
19
20
20
repositories {
@@ -69,6 +69,7 @@ dependencies {
69
69
testImplementation " org.junit.jupiter:junit-jupiter-params:$junitVersion "
70
70
testImplementation " org.mockito:mockito-core:$mockitoVersion "
71
71
testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine:$junitVersion "
72
+ testRuntimeOnly " org.junit.platform:junit-platform-launcher:1.9.0"
72
73
testImplementation " org.hamcrest:hamcrest-library:2.2"
73
74
testImplementation " org.testcontainers:junit-jupiter:1.17.6"
74
75
testImplementation " org.testcontainers:postgresql:1.17.6"
You can’t perform that action at this time.
0 commit comments