Browse Source

Latest applicable dependency updates (Jetty 9.4.11, Netty 4.1.25, Hibernate ORM 5.1.14, HSQLDB 2.4.1, Derby 10.14.2.0, HtmlUnit 2.31, Selenium 3.12)

pull/1884/head
Juergen Hoeller 7 years ago
parent
commit
062a15fbd7
  1. 8
      build.gradle
  2. 4
      spring-jdbc/spring-jdbc.gradle
  3. 6
      spring-test/spring-test.gradle

8
build.gradle

@ -44,15 +44,15 @@ configure(allprojects) { project -> @@ -44,15 +44,15 @@ configure(allprojects) { project ->
ext.aspectjVersion = "1.8.13"
ext.freemarkerVersion = "2.3.27-incubating"
ext.groovyVersion = "2.4.15"
ext.hsqldbVersion = "2.4.0"
ext.hsqldbVersion = "2.4.1"
ext.jackson2Version = "2.9.5"
ext.jettyVersion = "9.4.10.v20180503"
ext.jettyVersion = "9.4.11.v20180605"
ext.junitJupiterVersion = "5.0.3"
ext.junitPlatformVersion = "1.0.3"
ext.junitVintageVersion = "4.12.3"
ext.kotlinVersion = "1.2.41"
ext.log4jVersion = "2.11.0"
ext.nettyVersion = "4.1.24.Final"
ext.nettyVersion = "4.1.25.Final"
ext.reactorVersion = "Bismuth-SR9"
ext.rxjavaVersion = "1.3.8"
ext.rxjavaAdapterVersion = "1.2.1"
@ -271,7 +271,7 @@ configure(rootProject) { @@ -271,7 +271,7 @@ configure(rootProject) {
testCompile("javax.servlet:javax.servlet-api:3.1.0")
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}")
testCompile("org.hibernate:hibernate-core:5.1.13.Final")
testCompile("org.hibernate:hibernate-core:5.1.14.Final")
}
artifacts {

4
spring-jdbc/spring-jdbc.gradle

@ -8,8 +8,8 @@ dependencies { @@ -8,8 +8,8 @@ dependencies {
optional("javax.transaction:javax.transaction-api:1.2")
optional("org.hsqldb:hsqldb:${hsqldbVersion}")
optional("com.h2database:h2:1.4.197")
optional("org.apache.derby:derby:10.14.1.0")
optional("org.apache.derby:derbyclient:10.14.1.0")
optional("org.apache.derby:derby:10.14.2.0")
optional("org.apache.derby:derbyclient:10.14.2.0")
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
}

6
spring-test/spring-test.gradle

@ -42,13 +42,13 @@ dependencies { @@ -42,13 +42,13 @@ dependencies {
optional("org.apache.taglibs:taglibs-standard-jstlel:1.2.5") {
exclude group: "org.apache.taglibs", module: "taglibs-standard-spec"
}
optional("net.sourceforge.htmlunit:htmlunit:2.30") {
optional("net.sourceforge.htmlunit:htmlunit:2.31") {
exclude group: "commons-logging", module: "commons-logging"
}
optional("org.seleniumhq.selenium:htmlunit-driver:2.30.0") {
optional("org.seleniumhq.selenium:htmlunit-driver:2.31.0") {
exclude group: "commons-logging", module: "commons-logging"
}
optional("org.seleniumhq.selenium:selenium-java:3.11.0") {
optional("org.seleniumhq.selenium:selenium-java:3.12.0") {
exclude group: "commons-logging", module: "commons-logging"
exclude group: "io.netty", module: "netty"
}

Loading…
Cancel
Save