Skip to content

Commit 66c66ba

Browse files
committed
Upgrade to Rhino 1.7.10
Includes reordering of web dependency declarations.
1 parent cf96416 commit 66c66ba

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

spring-web/spring-web.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,15 @@ dependencies {
2929
optional("io.reactivex.rxjava2:rxjava:${rxjava2Version}")
3030
optional("io.netty:netty-all")
3131
optional("io.projectreactor.netty:reactor-netty")
32+
optional("io.undertow:undertow-core:${undertowVersion}")
3233
optional("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
3334
optional("org.eclipse.jetty:jetty-server") {
3435
exclude group: "javax.servlet", module: "javax.servlet-api"
3536
}
3637
optional("org.eclipse.jetty:jetty-servlet") {
3738
exclude group: "javax.servlet", module: "javax.servlet-api"
3839
}
39-
optional("io.undertow:undertow-core:${undertowVersion}")
40+
optional("org.eclipse.jetty:jetty-reactive-httpclient:1.0.1")
4041
optional("com.squareup.okhttp3:okhttp:3.11.0")
4142
optional("org.apache.httpcomponents:httpclient:4.5.6") {
4243
exclude group: "commons-logging", module: "commons-logging"
@@ -62,7 +63,6 @@ dependencies {
6263
optional("org.codehaus.groovy:groovy-all:${groovyVersion}")
6364
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
6465
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
65-
optional("org.eclipse.jetty:jetty-reactive-httpclient:1.0.1")
6666
testCompile("io.projectreactor:reactor-test")
6767
testCompile("org.apache.taglibs:taglibs-standard-jstlel:1.2.5") {
6868
exclude group: "org.apache.taglibs", module: "taglibs-standard-spec"

spring-webflux/spring-webflux.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ dependencies {
4141
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
4242
optional("com.google.protobuf:protobuf-java-util:3.6.1")
4343
testCompile("javax.xml.bind:jaxb-api:2.3.0")
44+
testCompile("com.fasterxml:aalto-xml:1.1.0")
4445
testCompile("org.hibernate:hibernate-validator:6.0.13.Final")
4546
testCompile "io.reactivex.rxjava2:rxjava:${rxjava2Version}"
4647
testCompile("io.projectreactor:reactor-test")
47-
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
48+
testCompile("io.undertow:undertow-core:${undertowVersion}")
4849
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
49-
testCompile("org.eclipse.jetty:jetty-reactive-httpclient:1.0.1")
50+
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
5051
testCompile("org.eclipse.jetty:jetty-server")
5152
testCompile("org.eclipse.jetty:jetty-servlet")
52-
testCompile("io.undertow:undertow-core:${undertowVersion}")
53-
testCompile("com.fasterxml:aalto-xml:1.1.0")
53+
testCompile("org.eclipse.jetty:jetty-reactive-httpclient:1.0.1")
5454
testCompile("com.squareup.okhttp3:mockwebserver:3.11.0")
5555
testCompile("org.jetbrains.kotlin:kotlin-script-runtime:${kotlinVersion}")
5656
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
@@ -50,14 +50,13 @@ dependencies {
5050
testCompile("org.eclipse.jetty:jetty-server") {
5151
exclude group: "javax.servlet", module: "javax.servlet"
5252
}
53-
testCompile("org.hibernate:hibernate-validator:6.0.13.Final")
5453
testCompile("org.apache.httpcomponents:httpclient:4.5.6") {
5554
exclude group: "commons-logging", module: "commons-logging"
5655
}
5756
testCompile("commons-fileupload:commons-fileupload:1.3.3")
5857
testCompile("commons-io:commons-io:2.5")
5958
testCompile("joda-time:joda-time:2.10")
60-
testCompile("org.mozilla:rhino:1.7.9")
59+
testCompile("org.mozilla:rhino:1.7.10")
6160
testCompile("dom4j:dom4j:1.6.1") {
6261
exclude group: "xml-apis", module: "xml-apis"
6362
}
@@ -67,6 +66,7 @@ dependencies {
6766
exclude group: "xerces", module: "xercesImpl"
6867
}
6968
testCompile("org.xmlunit:xmlunit-matchers:2.6.2")
69+
testCompile("org.hibernate:hibernate-validator:6.0.13.Final")
7070
testCompile("io.projectreactor:reactor-core")
7171
testCompile("io.reactivex:rxjava:${rxjavaVersion}")
7272
testCompile("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")

0 commit comments

Comments
 (0)