From 724597d45f229ea14f0f3e815c57b32daeafb96e Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 17 Jan 2020 10:34:55 +0000 Subject: [PATCH] Use a centrally managed version for commons-compress --- spring-boot-project/spring-boot-parent/build.gradle | 2 +- .../spring-boot-tools/spring-boot-loader-tools/build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-parent/build.gradle b/spring-boot-project/spring-boot-parent/build.gradle index a01df3f025..0e273e94b6 100644 --- a/spring-boot-project/spring-boot-parent/build.gradle +++ b/spring-boot-project/spring-boot-parent/build.gradle @@ -19,6 +19,7 @@ dependencies { api 'io.mockk:mockk:1.9.3' api 'jline:jline:2.11' api 'net.sf.jopt-simple:jopt-simple:5.0.4' + api 'org.apache.commons:commons-compress:1.19' api 'org.apache.maven:maven-plugin-api:3.6.3' api 'org.apache.maven:maven-resolver-provider:3.6.3' api 'org.apache.maven:maven-settings-builder:3.6.3' @@ -36,6 +37,5 @@ dependencies { api 'org.spockframework:spock-core:1.3-groovy-2.5' api 'org.spockframework:spock-spring:1.3-groovy-2.5' api 'org.testng:testng:6.14.3' - } } \ No newline at end of file diff --git a/spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle b/spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle index 177fab00f4..b01ff3ff03 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle +++ b/spring-boot-project/spring-boot-tools/spring-boot-loader-tools/build.gradle @@ -14,8 +14,8 @@ configurations { } dependencies { - api platform(project(':spring-boot-project:spring-boot-dependencies')) - api "org.apache.commons:commons-compress:1.19" + api platform(project(':spring-boot-project:spring-boot-parent')) + api "org.apache.commons:commons-compress" compileOnly "ch.qos.logback:logback-classic"