Skip to content

Commit 7f0b000

Browse files
authored
1 parent d35a211 commit 7f0b000

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

core/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ dependencies {
125125
testImplementation group: 'com.dimafeng', name: 'testcontainers-scala-core_3', version: '0.41.4'
126126

127127
constraints {
128-
api group: 'io.netty', name: 'netty-codec-http2', version: '4.1.115.Final'
129-
api group: 'io.netty', name: 'netty-handler-proxy', version: '4.1.115.Final'
130-
api group: 'io.netty', name: 'netty-transport-native-unix-common', version: '4.1.115.Final'
131-
api group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.115.Final'
132-
api group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.115.Final'
128+
api group: 'io.netty', name: 'netty-codec-http2', version: '4.1.118.Final'
129+
api group: 'io.netty', name: 'netty-handler-proxy', version: '4.1.118.Final'
130+
api group: 'io.netty', name: 'netty-transport-native-unix-common', version: '4.1.118.Final'
131+
api group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.118.Final'
132+
api group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.118.Final'
133133
api group: 'com.google.guava', name: 'guava', version: '32.0.1-jre'
134134
api group: 'io.spray', name: 'spray-json_3', version: '1.3.6'
135135
api group: 'org.asynchttpclient', name: 'async-http-client', version: '3.0.1'

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
publishedPluginVersion=1.62.0
2-
pluginVersion=1.63.0-pre2
2+
pluginVersion=1.63.0-pre3
33
pluginName=readonlyrest
44

55
org.gradle.jvmargs=-Xmx6144m

ror-shadowed-libs/build.gradle

+5-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ dependencies {
5656
shadowCompile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.13.5'
5757
shadowCompile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.5'
5858
shadowCompile group: 'org.yaml', name: 'snakeyaml', version: '2.2'
59-
shadowCompile group: 'com.jayway.jsonpath', name: 'json-path', version: '2.9.0'
59+
shadowCompile(group: 'com.jayway.jsonpath', name: 'json-path', version: '2.9.0') {
60+
exclude group: 'net.minidev'
61+
}
62+
//It's a fix for transitive dependency for json-path, listed here to fix CVE. It can be removed after json-path update
63+
shadowCompile group: 'net.minidev', name: 'json-smart', version: '2.5.2'
6064
}
6165

6266
shadowJar {

0 commit comments

Comments
 (0)