From c2f98514df71e7a17b5dcf2ddd60c76d5721edba Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 20 May 2021 11:39:11 -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 01293e46..094f3dc3 100644 --- a/build.gradle +++ b/build.gradle @@ -1,12 +1,12 @@ buildscript { - dependencies { - classpath 'io.spring.gradle:spring-build-conventions:0.0.37' - classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion" - } repositories { gradlePluginPortal() maven { url 'https://repo.spring.io/plugins-snapshot' } } + dependencies { + classpath 'io.spring.gradle:spring-build-conventions:0.0.37' + classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion" + } } apply plugin: 'io.spring.convention.root'