File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
temporal-remote-data-encoder Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,13 @@ ext {
50
50
51
51
gsonVersion = ' 2.10.1' // [2.0,)
52
52
53
- jsonPathVersion = ' 2.8 .0' // compileOnly
53
+ jsonPathVersion = ' 2.9 .0' // compileOnly
54
54
55
55
cronUtilsVersion = ' 9.2.1' // for test server only
56
56
57
57
// Spring Boot 3 requires Java 17, java-sdk builds against 2.x version because we support Java 8.
58
58
// We do test compatibility with Spring Boot 3 in integration tests.
59
- springBootVersion = project. hasProperty(" edgeDepsTest" ) ? ' 3.0.4' : ' 2.7.12 ' // [2.4.0,)
59
+ springBootVersion = project. hasProperty(" edgeDepsTest" ) ? ' 3.0.4' : ' 2.7.18 ' // [2.4.0,)
60
60
61
61
// test scoped
62
62
// we don't upgrade to 1.3 and 1.4 because they require slf4j 2.x
Original file line number Diff line number Diff line change 1
1
description = ''' Temporal Workflow Java SDK'''
2
2
3
3
ext {
4
- okhttpVersion = ' 4.10 .0'
4
+ okhttpVersion = ' 4.11 .0'
5
5
servletVersion = ' 4.0.1'
6
6
}
7
7
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ dependencies {
19
19
// It's useful only for unit tests and debugging.
20
20
// For these use-cases Temporal users can add this dep in the classpath temporary or permanently themselves.
21
21
compileOnly " com.jayway.jsonpath:json-path:$jsonPathVersion "
22
- testImplementation " com.jayway.jsonpath:json-path:$jsonPathVersion "
22
+ testImplementation(" com.jayway.jsonpath:json-path:$jsonPathVersion " ){
23
+ exclude group : ' org.slf4j' , module : ' slf4j-api'
24
+ }
23
25
24
26
testImplementation project(' :temporal-testing' )
25
27
testImplementation " junit:junit:${ junitVersion} "
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ dependencies {
20
20
// This dependency is included in temporal-sdk module as optional with compileOnly scope.
21
21
// To make things easier for users, it's helpful for the testing module to bring this dependency
22
22
// transitively as most users work with history jsons in tests.
23
- implementation " com.jayway.jsonpath:json-path:$jsonPathVersion "
23
+ implementation(" com.jayway.jsonpath:json-path:$jsonPathVersion " ){
24
+ exclude group : ' org.slf4j' , module : ' slf4j-api'
25
+ }
24
26
25
27
junit4Api ' junit:junit:4.13.2'
26
28
You can’t perform that action at this time.
0 commit comments