From a9dabe13bb4b1bb53256d9f9802c40dc1e4e5005 Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Sun, 16 Feb 2020 19:20:43 +0100 Subject: [PATCH] Remove redundant useJUnitPlatform declarations See gh-20206 --- spring-boot-project/spring-boot-cli/build.gradle | 1 - spring-boot-project/spring-boot-test/build.gradle | 3 --- 2 files changed, 4 deletions(-) diff --git a/spring-boot-project/spring-boot-cli/build.gradle b/spring-boot-project/spring-boot-cli/build.gradle index 8d4935320eb..a00e3cdb6ab 100644 --- a/spring-boot-project/spring-boot-cli/build.gradle +++ b/spring-boot-project/spring-boot-cli/build.gradle @@ -98,7 +98,6 @@ sourceSets { test { dependsOn syncTestRepository - useJUnitPlatform() } task fullJar(type: Jar) { diff --git a/spring-boot-project/spring-boot-test/build.gradle b/spring-boot-project/spring-boot-test/build.gradle index f12d5b1be8b..e4644be9def 100644 --- a/spring-boot-project/spring-boot-test/build.gradle +++ b/spring-boot-project/spring-boot-test/build.gradle @@ -56,6 +56,3 @@ dependencies { testRuntimeOnly("org.junit.vintage:junit-vintage-engine") } -test { - useJUnitPlatform() -}