Skip to content

Commit c7afe53

Browse files
author
Steve Riesenberg
committed
Apply release plugin
Closes gh-1426
1 parent 668ad6c commit c7afe53

File tree

3 files changed

+37
-15
lines changed

3 files changed

+37
-15
lines changed

build.gradle

+10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
plugins {
22
id "io.spring.convention.root"
3+
id "io.spring.security.release" version "1.0.0-SNAPSHOT"
34
}
45

56
group = "org.springframework.security"
67
description = "Spring Authorization Server"
78

9+
springRelease {
10+
repositoryOwner = "spring-projects"
11+
weekOfMonth = 2
12+
dayOfWeek = 4
13+
referenceDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/reference/html/"
14+
apiDocUrl = "https://docs.spring.io/spring-authorization-server/docs/{version}/api/"
15+
replaceSnapshotVersionInReferenceDocUrl = false
16+
}
17+
818
if (hasProperty("buildScan")) {
919
buildScan {
1020
termsOfServiceUrl = "https://gradle.com/terms-of-service"
+24-13
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
1-
releasenotes:
1+
changelog:
2+
repository: spring-projects/spring-authorization-server
23
sections:
3-
- title: "New Features"
4-
emoji: ":star:"
5-
labels: ["enhancement"]
6-
- title: "Bug Fixes"
7-
emoji: ":beetle:"
8-
labels: ["bug", "regression"]
9-
- title: "Dependency Upgrades"
10-
emoji: ":hammer:"
11-
labels: ["dependency-upgrade"]
12-
- title: "Non-passive"
13-
emoji: ":rewind:"
14-
labels: ["breaks-passivity"]
4+
- title: ":star: New Features"
5+
labels: ["type: enhancement"]
6+
sort: "title"
7+
- title: ":beetle: Bug Fixes"
8+
labels: ["type: bug", "type: regression"]
9+
sort: "title"
10+
- title: ":hammer: Dependency Upgrades"
11+
labels: ["type: dependency-upgrade"]
12+
sort: "title"
13+
- title: ":rewind: Non-passive"
14+
labels: ["type: breaks-passivity"]
15+
sort: "title"
16+
issues:
17+
exclude:
18+
labels: [ "status: duplicate" ]
19+
ports:
20+
- label: "status: forward-port"
21+
bodyExpression: 'Forward port of issue #(\d+).*'
22+
contributors:
23+
title: ":heart: Contributors"
24+
exclude:
25+
names: ["jgrandja", "sjohnr"]

settings.gradle

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
pluginManagement {
22
repositories {
33
gradlePluginPortal()
4-
maven { url 'https://repo.spring.io/release' }
5-
maven { url 'https://repo.spring.io/milestone' }
4+
maven { url "https://repo.spring.io/release" }
5+
maven { url "https://repo.spring.io/milestone" }
6+
maven { url "https://repo.spring.io/snapshot" }
67
}
78
}
89

0 commit comments

Comments
 (0)