Add GitHubReleasePlugin with createGitHubRelease task

Closes gh-10456
Closes gh-10457
This commit is contained in:
Steve Riesenberg
2021-12-22 10:05:59 -06:00
parent 194eaf8491
commit 8abd4e999f
13 changed files with 610 additions and 13 deletions

View File

@@ -22,6 +22,7 @@ apply plugin: 'org.springframework.security.update-dependencies'
apply plugin: 'org.springframework.security.sagan'
apply plugin: 'org.springframework.github.milestone'
apply plugin: 'org.springframework.github.changelog'
apply plugin: 'org.springframework.github.release'
group = 'org.springframework.security'
description = 'Spring Security'
@@ -46,6 +47,13 @@ tasks.named("gitHubCheckMilestoneHasNoOpenIssues") {
}
}
tasks.named("createGitHubRelease") {
repository {
owner = "spring-projects"
name = "spring-security"
}
}
tasks.named("updateDependencies") {
// we aren't Gradle 7 compatible yet
checkForGradleUpdate = false