-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy releases to SonatypeOSS (staging repo) instead of Bintray (#182)
This commit switches the target of GA release deployments from Bintray to Sonatype OSS / Maven Central (triggering the creation of a staging repository, but not the closure and promotion of said repository). This will ensure releases can be performed past Bintray's sunset. Since Maven Central requires signed artifacts, the `signing` plugin is added to the mix. As a core Gradle plugin, it is trusted enough to have access to the relevant secrets. This change also relies on the `release` environment in GitHub having additional secrets (GPG signing key+passphrase, Sonatype credentials).
- Loading branch information
1 parent
6af0675
commit 2a9ce0d
Showing
4 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
plugins { | ||
id "java" | ||
id "maven-publish" | ||
id "signing" | ||
} | ||
|
||
description = "BlockHound JUnit Platform Integration" | ||
|