From ef314e5c28a35dcf929cfbb34190dab015465d6e Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Thu, 11 Feb 2021 19:44:56 -0500 Subject: [PATCH] Revert "Use artifactoryUsername/Password for plugin repositories" This reverts commit 6db194da2734fd5587534c8217aaf3a7a5f9a229. --- build.gradle | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/build.gradle b/build.gradle index 0a89353..15a24b5 100644 --- a/build.gradle +++ b/build.gradle @@ -5,15 +5,7 @@ buildscript { classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE' } repositories { - maven { - url = 'https://repo.spring.io/plugins-snapshot' - if (project.hasProperty('artifactoryUsername')) { - credentials { - username "$artifactoryUsername" - password "$artifactoryPassword" - } - } - } + maven { url 'https://repo.spring.io/plugins-snapshot' } maven { url 'https://plugins.gradle.org/m2/' } } }