Skip to content

Commit 94ae933

Browse files
committed
Upgrade to Rhino 1.7.10 and Apache Johnzon 1.1.9
Includes reordering of web dependency declarations.
1 parent 952315c commit 94ae933

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

spring-web/spring-web.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ dependencies {
2828
optional("io.reactivex.rxjava2:rxjava:${rxjava2Version}")
2929
optional("io.netty:netty-all")
3030
optional("io.projectreactor.ipc:reactor-netty")
31+
optional("io.undertow:undertow-core:${undertowVersion}")
3132
optional("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
3233
optional("org.eclipse.jetty:jetty-server:${jettyVersion}") {
3334
exclude group: "javax.servlet", module: "javax.servlet-api"
3435
}
3536
optional("org.eclipse.jetty:jetty-servlet:${jettyVersion}") {
3637
exclude group: "javax.servlet", module: "javax.servlet-api"
3738
}
38-
optional("io.undertow:undertow-core:${undertowVersion}")
3939
optional("com.squareup.okhttp3:okhttp:3.10.0")
4040
optional("org.apache.httpcomponents:httpclient:4.5.5") {
4141
exclude group: "commons-logging", module: "commons-logging"
@@ -80,5 +80,5 @@ dependencies {
8080
testRuntime("com.sun.xml.bind:jaxb-core:2.3.0")
8181
testRuntime("com.sun.xml.bind:jaxb-impl:2.3.0")
8282
testRuntime("javax.json:javax.json-api:1.1.2")
83-
testRuntime("org.apache.johnzon:johnzon-jsonb:1.1.8")
83+
testRuntime("org.apache.johnzon:johnzon-jsonb:1.1.9")
8484
}

spring-webflux/spring-webflux.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ dependencies {
3939
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
4040
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
4141
testCompile("javax.xml.bind:jaxb-api:2.3.0")
42+
testCompile("com.fasterxml:aalto-xml:1.0.0")
4243
testCompile("org.hibernate:hibernate-validator:6.0.10.Final")
4344
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}"
4445
testCompile("io.projectreactor:reactor-test")
45-
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
46+
testCompile("io.undertow:undertow-core:${undertowVersion}")
4647
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
48+
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
4749
testCompile("org.eclipse.jetty:jetty-server:${jettyVersion}")
4850
testCompile("org.eclipse.jetty:jetty-servlet:${jettyVersion}")
49-
testCompile("io.undertow:undertow-core:${undertowVersion}")
50-
testCompile("com.fasterxml:aalto-xml:1.0.0")
5151
testCompile("com.squareup.okhttp3:mockwebserver:3.10.0")
5252
testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}")
5353
testRuntime("org.jetbrains.kotlin:kotlin-script-util:${kotlinVersion}")

spring-webmvc/spring-webmvc.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,13 @@ dependencies {
4949
testCompile("org.eclipse.jetty:jetty-server:${jettyVersion}") {
5050
exclude group: "javax.servlet", module: "javax.servlet"
5151
}
52-
testCompile("org.hibernate:hibernate-validator:6.0.10.Final")
5352
testCompile("org.apache.httpcomponents:httpclient:4.5.5") {
5453
exclude group: "commons-logging", module: "commons-logging"
5554
}
5655
testCompile("commons-fileupload:commons-fileupload:1.3.3")
5756
testCompile("commons-io:commons-io:2.5")
5857
testCompile("joda-time:joda-time:2.9.9")
59-
testCompile("org.mozilla:rhino:1.7.9")
58+
testCompile("org.mozilla:rhino:1.7.10")
6059
testCompile("dom4j:dom4j:1.6.1") {
6160
exclude group: "xml-apis", module: "xml-apis"
6261
}
@@ -66,6 +65,7 @@ dependencies {
6665
exclude group: "xerces", module: "xercesImpl"
6766
}
6867
testCompile("org.xmlunit:xmlunit-matchers:2.5.1")
68+
testCompile("org.hibernate:hibernate-validator:6.0.10.Final")
6969
testCompile("io.projectreactor:reactor-core")
7070
testCompile("io.reactivex:rxjava:${rxjavaVersion}")
7171
testCompile("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")

0 commit comments

Comments
 (0)