Skip to content
This repository was archived by the owner on May 31, 2022. It is now read-only.

Commit

Permalink
Update to Spring Build Conventions 0.0.35
Browse files Browse the repository at this point in the history
Closes gh-293
  • Loading branch information
jzheaux committed Nov 16, 2020
1 parent e1f8aef commit 5f18baf
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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'

Expand Down

0 comments on commit 5f18baf

Please sign in to comment.