From 96f1e2d2a2cd794204649cc8deaa2420c988209b Mon Sep 17 00:00:00 2001 From: Benedikt Waldvogel Date: Fri, 1 Mar 2019 21:49:27 +0100 Subject: [PATCH] Update all dependencies --- gradle/dependency-locks/compileClasspath.lockfile | 4 ++-- gradle/dependency-locks/default.lockfile | 4 ++-- gradle/dependency-locks/runtimeClasspath.lockfile | 4 ++-- .../dependency-locks/testCompileClasspath.lockfile | 12 ++++++------ .../dependency-locks/testRuntimeClasspath.lockfile | 14 +++++++------- updateDependencies.sh | 3 +++ 6 files changed, 22 insertions(+), 19 deletions(-) create mode 100755 updateDependencies.sh diff --git a/gradle/dependency-locks/compileClasspath.lockfile b/gradle/dependency-locks/compileClasspath.lockfile index e9df299..2945069 100644 --- a/gradle/dependency-locks/compileClasspath.lockfile +++ b/gradle/dependency-locks/compileClasspath.lockfile @@ -2,6 +2,6 @@ # Manual edits can break the build and are not advised. # This file is expected to be part of source control. com.google.code.findbugs:jsr305:3.0.2 -net.bytebuddy:byte-buddy:1.9.6 +net.bytebuddy:byte-buddy:1.9.10 org.objenesis:objenesis:3.0.1 -org.slf4j:slf4j-api:1.7.25 +org.slf4j:slf4j-api:1.7.26 diff --git a/gradle/dependency-locks/default.lockfile b/gradle/dependency-locks/default.lockfile index e9df299..2945069 100644 --- a/gradle/dependency-locks/default.lockfile +++ b/gradle/dependency-locks/default.lockfile @@ -2,6 +2,6 @@ # Manual edits can break the build and are not advised. # This file is expected to be part of source control. com.google.code.findbugs:jsr305:3.0.2 -net.bytebuddy:byte-buddy:1.9.6 +net.bytebuddy:byte-buddy:1.9.10 org.objenesis:objenesis:3.0.1 -org.slf4j:slf4j-api:1.7.25 +org.slf4j:slf4j-api:1.7.26 diff --git a/gradle/dependency-locks/runtimeClasspath.lockfile b/gradle/dependency-locks/runtimeClasspath.lockfile index e9df299..2945069 100644 --- a/gradle/dependency-locks/runtimeClasspath.lockfile +++ b/gradle/dependency-locks/runtimeClasspath.lockfile @@ -2,6 +2,6 @@ # Manual edits can break the build and are not advised. # This file is expected to be part of source control. com.google.code.findbugs:jsr305:3.0.2 -net.bytebuddy:byte-buddy:1.9.6 +net.bytebuddy:byte-buddy:1.9.10 org.objenesis:objenesis:3.0.1 -org.slf4j:slf4j-api:1.7.25 +org.slf4j:slf4j-api:1.7.26 diff --git a/gradle/dependency-locks/testCompileClasspath.lockfile b/gradle/dependency-locks/testCompileClasspath.lockfile index 929ed22..0ec6e32 100644 --- a/gradle/dependency-locks/testCompileClasspath.lockfile +++ b/gradle/dependency-locks/testCompileClasspath.lockfile @@ -5,15 +5,15 @@ cglib:cglib:3.2.10 com.google.code.findbugs:jsr305:3.0.2 javax.validation:validation-api:2.0.1.Final junit:junit:4.12 -net.bytebuddy:byte-buddy-agent:1.9.3 -net.bytebuddy:byte-buddy:1.9.6 -nl.jqno.equalsverifier:equalsverifier:3.1.4 +net.bytebuddy:byte-buddy-agent:1.9.7 +net.bytebuddy:byte-buddy:1.9.10 +nl.jqno.equalsverifier:equalsverifier:3.1.5 org.apache.ant:ant-launcher:1.10.3 org.apache.ant:ant:1.10.3 -org.assertj:assertj-core:3.11.1 +org.assertj:assertj-core:3.12.1 org.hamcrest:hamcrest-core:1.3 org.javassist:javassist:3.24.1-GA -org.mockito:mockito-core:2.23.4 +org.mockito:mockito-core:2.24.5 org.objenesis:objenesis:3.0.1 org.ow2.asm:asm:7.0 -org.slf4j:slf4j-api:1.7.25 +org.slf4j:slf4j-api:1.7.26 diff --git a/gradle/dependency-locks/testRuntimeClasspath.lockfile b/gradle/dependency-locks/testRuntimeClasspath.lockfile index b00c416..4456b31 100644 --- a/gradle/dependency-locks/testRuntimeClasspath.lockfile +++ b/gradle/dependency-locks/testRuntimeClasspath.lockfile @@ -7,16 +7,16 @@ ch.qos.logback:logback-core:1.2.3 com.google.code.findbugs:jsr305:3.0.2 javax.validation:validation-api:2.0.1.Final junit:junit:4.12 -net.bytebuddy:byte-buddy-agent:1.9.3 -net.bytebuddy:byte-buddy:1.9.6 -nl.jqno.equalsverifier:equalsverifier:3.1.4 +net.bytebuddy:byte-buddy-agent:1.9.7 +net.bytebuddy:byte-buddy:1.9.10 +nl.jqno.equalsverifier:equalsverifier:3.1.5 org.apache.ant:ant-launcher:1.10.3 org.apache.ant:ant:1.10.3 -org.assertj:assertj-core:3.11.1 +org.assertj:assertj-core:3.12.1 org.hamcrest:hamcrest-core:1.3 org.javassist:javassist:3.24.1-GA -org.mockito:mockito-core:2.23.4 +org.mockito:mockito-core:2.24.5 org.objenesis:objenesis:3.0.1 org.ow2.asm:asm:7.0 -org.slf4j:jcl-over-slf4j:1.7.25 -org.slf4j:slf4j-api:1.7.25 +org.slf4j:jcl-over-slf4j:1.7.26 +org.slf4j:slf4j-api:1.7.26 diff --git a/updateDependencies.sh b/updateDependencies.sh new file mode 100755 index 0000000..c7f494d --- /dev/null +++ b/updateDependencies.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +./gradlew dependencies --update-locks '*:*'