From 931885a0482dd95cc2591e17c0c394f754562193 Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 20 May 2021 14:17:50 -0700 Subject: [PATCH] Format Gradle build script. --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 17f0615c..cbe5c7aa 100644 --- a/build.gradle +++ b/build.gradle @@ -1,14 +1,14 @@ buildscript { + repositories { + gradlePluginPortal() + maven { url 'https://repo.spring.io/plugins-snapshot' } + } dependencies { // Cannot upgrade to Spring Build Conventions Gradle Plugin after 0.0.35.RELEASE since the Gradle build // can no longer resolve VMware Tanzu (Pivotal) GemFire bits. classpath 'io.spring.gradle:spring-build-conventions:0.0.35.RELEASE' classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion" } - repositories { - gradlePluginPortal() - maven { url 'https://repo.spring.io/plugins-snapshot' } - } } apply plugin: 'io.spring.convention.root'