This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added 'developers', as required by Maven Central
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
- Loading branch information
1 parent
1912c10
commit 8dd713b
Showing
1 changed file
with
33 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,40 @@ | ||
shipkit { | ||
git.releasableBranchRegex = "release/.+" | ||
git.user = "jaeger-release-bot" | ||
git.email = "[email protected]" | ||
git.releasableBranchRegex = "release/.+" | ||
git.user = "jaeger-release-bot" | ||
git.email = "[email protected]" | ||
|
||
gitHub.repository = "jaegertracing/jaeger-client-java" | ||
gitHub.readOnlyAuthToken = System.getenv("GH_READ_TOKEN") ?: "7daade13ce3b15302a0da78abcb57ba2d8593d12" | ||
gitHub.writeAuthToken = System.getenv("GH_WRITE_TOKEN") | ||
releaseNotes.file = "CHANGELOG.md" | ||
gitHub.repository = "jaegertracing/jaeger-client-java" | ||
gitHub.readOnlyAuthToken = System.getenv("GH_READ_TOKEN") ?: "7daade13ce3b15302a0da78abcb57ba2d8593d12" | ||
gitHub.writeAuthToken = System.getenv("GH_WRITE_TOKEN") | ||
releaseNotes.file = "CHANGELOG.md" | ||
|
||
// see https://github.com/jaegertracing/jaeger-client-java/settings/collaboration and | ||
// https://github.com/orgs/jaegertracing/teams/jaeger-maintainers/members | ||
// sorted alphabetically by username | ||
team.developers = [ | ||
'black-adder:Won Jun Jang', | ||
'jpkrohling:Juraci Paixão Kröhling', | ||
'pavolloffay:Pavol Loffay', | ||
'vprithvi:Prithvi Raj', | ||
'yurishkuro:Yuri Shkuro', | ||
] | ||
} | ||
|
||
allprojects { | ||
plugins.withId("com.jfrog.bintray") { | ||
plugins.withId("com.jfrog.bintray") { | ||
|
||
//Bintray configuration is handled by JFrog Bintray Gradle Plugin | ||
//For reference see the official documentation: https://github.com/bintray/gradle-bintray-plugin | ||
bintray { | ||
key = System.getenv("BINTRAY_API_KEY") | ||
pkg { | ||
userOrg = 'jaegertracing' | ||
repo = 'jaeger-client-java' | ||
user = System.getenv("BINTRAY_API_USER") | ||
name = 'maven' | ||
licenses = ['Apache-2.0'] | ||
labels = ['distributed tracing', 'jaeger'] | ||
} | ||
} | ||
} | ||
//Bintray configuration is handled by JFrog Bintray Gradle Plugin | ||
//For reference see the official documentation: https://github.com/bintray/gradle-bintray-plugin | ||
bintray { | ||
key = System.getenv("BINTRAY_API_KEY") | ||
pkg { | ||
userOrg = 'jaegertracing' | ||
repo = 'jaeger-client-java' | ||
user = System.getenv("BINTRAY_API_USER") | ||
name = 'maven' | ||
licenses = ['Apache-2.0'] | ||
labels = ['distributed tracing', 'jaeger'] | ||
} | ||
} | ||
} | ||
} |