diff --git a/build.gradle b/build.gradle index 5384c9f..4c4d462 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { dependencies { - classpath 'io.spring.gradle:spring-build-conventions:0.0.32.RELEASE' + classpath 'io.spring.gradle:spring-build-conventions:0.0.35.RELEASE' classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion" classpath 'io.spring.javaformat:spring-javaformat-gradle-plugin:0.0.25' classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE' @@ -19,23 +19,6 @@ repositories { apply plugin: 'io.spring.convention.root' apply plugin: 'io.spring.nohttp' -allprojects { project -> - project.repositories { repos -> - all { repo -> - if (!repo.url.toString().startsWith("https://repo.spring.io/libs")) { - return; - } - if (!project.hasProperty("artifactoryUsername")) { - return; - } - repo.credentials { - username = artifactoryUsername - password = artifactoryPassword - } - } - } -} - group = 'org.springframework.security.oauth.boot' description = 'Spring Security OAuth2 Auto Configuration'