Skip to content

Commit 0ebf120

Browse files
yweberSgtSilvio
authored andcommitted
removed bintray
1 parent 3bff78a commit 0ebf120

File tree

5 files changed

+1
-10
lines changed

5 files changed

+1
-10
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ out/
1414
.DS_Store
1515

1616
credentials.gradle
17-
bintray.gradle

build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,6 @@ allprojects {
270270
allprojects {
271271
plugins.withId("maven-publish") {
272272

273-
plugins.apply("com.jfrog.bintray")
274-
275273
afterEvaluate {
276274
publishing {
277275
publications {

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ paho.version=1.2.0
2727
plugin.shadow.version=5.2.0
2828
plugin.bnd.version=5.3.0
2929
plugin.license.version=0.15.0
30-
plugin.bintray.version=1.8.5
3130
plugin.github-release.version=2.2.12
3231
plugin.utf8.version=0.1.0
3332
plugin.metadata.version=0.2.0

gradle/publishing.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ Credentials can be stored in a local file named credentials.gradle, which will b
33
format:
44
55
ext {
6-
bintray_username = '...'
7-
bintray_apiKey = '...'
86
github_token = '...'
97
}
108
*/
@@ -17,16 +15,14 @@ Alternatively they can be specified via environment variables:
1715
e.g. via shell script, then either source that script in your shell or call gradle from the script:
1816
1917
#!/bin/sh
20-
export bintray_username="..."
21-
export bintray_apiKey="..."
2218
export github_token="..."
2319
2420
Secure configuration for Travis CI:
2521
Credentials must be stored in the Travis repository settings (https://travis-ci.org/hivemq/hivemq-mqtt-client/settings).
2622
The environment variables are encrypted by Travis and get decrypted before each build.
2723
Availability must be restricted to the master branch (only needed for publishing releases).
2824
*/
29-
listOf("bintray_username", "bintray_apiKey", "github_token").forEach {
25+
listOf("github_token").forEach {
3026
if (!project.hasProperty(it)) {
3127
project.extra[it] = System.getenv()[it]
3228
}

settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ pluginManagement {
77
id("com.github.johnrengelman.shadow") version "${extra["plugin.shadow.version"]}"
88
id("biz.aQute.bnd.builder") version "${extra["plugin.bnd.version"]}"
99
id("com.github.hierynomus.license") version "${extra["plugin.license.version"]}"
10-
id("com.jfrog.bintray") version "${extra["plugin.bintray.version"]}"
1110
id("com.github.breadmoirai.github-release") version "${extra["plugin.github-release.version"]}"
1211
id("com.github.sgtsilvio.gradle.utf8") version "${extra["plugin.utf8.version"]}"
1312
id("com.github.sgtsilvio.gradle.metadata") version "${extra["plugin.metadata.version"]}"

0 commit comments

Comments
 (0)