File tree Expand file tree Collapse file tree 15 files changed +61
-68
lines changed
Expand file tree Collapse file tree 15 files changed +61
-68
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
1616 - uses : actions/checkout@v2
1717 with :
1818 token : ' ${{ secrets.PERSONAL_ACCESS_TOKEN }}'
19- - name : Set up JDK 17
19+ - name : Set up JDK 21
2020 uses : actions/setup-java@v1
2121 with :
22- java-version : 17
22+ java-version : 21
2323 - name : release gradle
2424 run : |
2525 git config --local user.email "[email protected] "
Original file line number Diff line number Diff line change 66 runs-on : ubuntu-latest
77 steps :
889- - name : Set up JDK 15
9+ - name : Set up JDK 21
1010 uses : actions/setup-java@v1
1111 with :
12- java-version : 15
12+ java-version : 21
1313 - name : Start docker
1414 run : docker pull postgres:14
1515 - name : Run test
Original file line number Diff line number Diff line change 1- 15
1+ 21
Original file line number Diff line number Diff line change 1+ java=21-open
Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ subprojects {
2222 withSourcesJar()
2323 withJavadocJar()
2424 toolchain {
25- languageVersion = JavaLanguageVersion . of(17 )
25+ languageVersion = JavaLanguageVersion . of(21 )
2626 }
2727 }
2828 ext {
29- jacksonVersion = " 2.10.5"
30- akkaVersion = " 2.6.6"
31- vavrVersion = " 0.10.0"
32- _jooqVersion = " 3.19.5"
29+ jacksonVersion = " 2.18.4"
30+ vavrVersion = " 0.10.6"
31+ _jooqVersion = " 3.20.4"
3332 scalaVersion = " 2.13"
34- reactorVersion = " 3.6.3"
33+ reactorVersion = " 3.7.7"
34+ testContainers = " 1.21.1"
3535 }
3636 test {
3737 testLogging {
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.3-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+ networkTimeout =10000
5+ validateDistributionUrl =true
46zipStoreBase =GRADLE_USER_HOME
57zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ dependencies {
1111
1212 implementation(" io.vavr:vavr:$vavrVersion " )
1313 implementation(" org.jooq:jooq:$_jooqVersion " )
14- implementation(" io.projectreactor:reactor-core:3.4.23 " )
14+ implementation(" io.projectreactor:reactor-core:$r eactorVersion " )
1515 implementation(" com.fasterxml.jackson.core:jackson-databind:$jacksonVersion " )
16- implementation(" io.vavr:vavr-jackson:$v avrVersion " )
16+ implementation(" io.vavr:vavr-jackson:0.10.3 " )
1717 implementation(" com.novocode:junit-interface:0.11" )
1818 implementation(" org.assertj:assertj-core:3.10.0" )
1919 implementation(" org.postgresql:postgresql:42.2.5" )
2020 implementation(" org.mockito:mockito-core:2.22.0" )
21- implementation(" org.testcontainers:postgresql:1.16.3 " )
21+ implementation(" org.testcontainers:postgresql:${ testContainers } " )
2222}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ group = 'fr.maif'
88dependencies {
99 implementation(" io.vavr:vavr:$vavrVersion " )
1010 implementation(" org.jooq:jooq:$_jooqVersion " )
11- implementation(" io.projectreactor:reactor-core:3.4.23 " )
11+ implementation(" io.projectreactor:reactor-core:$r eactorVersion " )
1212 implementation(" org.slf4j:slf4j-api:1.7.30" )
1313 implementation(" org.slf4j:slf4j-log4j12:1.7.30" )
1414}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ dependencies {
1111
1212 implementation(" io.vavr:vavr:$vavrVersion " )
1313 implementation(" org.jooq:jooq:$_jooqVersion " )
14- implementation(" io.projectreactor:reactor-core:3.4.23 " )
14+ implementation(" io.projectreactor:reactor-core:$r eactorVersion " )
1515 implementation(" org.slf4j:slf4j-api:1.7.26" )
1616
1717 testImplementation project(' :jooq-async-api-tck' )
@@ -21,6 +21,6 @@ dependencies {
2121 testImplementation(" org.assertj:assertj-core:3.10.0" )
2222 testImplementation(" org.postgresql:postgresql:42.2.5" )
2323 testImplementation(" org.mockito:mockito-core:2.22.0" )
24- testImplementation(" org.testcontainers:testcontainers:1.17.3 " )
25- testImplementation(" org.testcontainers:postgresql:1.17.3 " )
24+ testImplementation(" org.testcontainers:testcontainers:${ testContainers } " )
25+ testImplementation(" org.testcontainers:postgresql:${ testContainers } " )
2626}
You can’t perform that action at this time.
0 commit comments