Skip to content

Commit d214d72

Browse files
authored
Remove bintray (#11)
* Remove bintray * Remove bintray
1 parent bc0fa62 commit d214d72

3 files changed

Lines changed: 1 addition & 15 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ jobs:
1313
- name: Checkout the repo
1414
uses: actions/checkout@v2
1515
- name: Publish the plugin artifacts
16-
run: ./gradlew publish publishPlugins -Pgradle.publish.key="$GRADLE_KEY" -Pgradle.publish.secret="$GRADLE_SECRET"
16+
run: ./gradlew publishPlugins -Pgradle.publish.key="$GRADLE_KEY" -Pgradle.publish.secret="$GRADLE_SECRET"
1717
env:
18-
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
19-
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
2018
GRADLE_KEY: ${{ secrets.GRADLE_KEY }}
2119
GRADLE_SECRET: ${{ secrets.GRADLE_SECRET }}
2220

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Here comes AutoManifest Gradle Plugin to rescue 🚀
1818
Configuration
1919
-------------
2020

21-
[ ![Bintray](https://img.shields.io/bintray/v/gradleup/maven/auto-manifest) ](https://bintray.com/gradleup/maven/auto-manifest/_latestVersion)
2221
[ ![Gradle Plugin Portal](https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/com/gradleup/auto/manifest/com.gradleup.auto.manifest.gradle.plugin/maven-metadata.xml.svg?label=Gradle%20Plugins%20Portal) ](https://plugins.gradle.org/plugin/com.gradleup.auto.manifest)
2322

2423
Add the plugin in your `build.gradle` file (preferably in root one)

auto-manifest-plugin/build.gradle.kts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,6 @@ publishing {
5252
}
5353
}
5454
}
55-
56-
repositories {
57-
maven {
58-
name = "bintray"
59-
url = uri("https://api.bintray.com/maven/gradleup/maven/auto-manifest/;publish=1;override=1")
60-
credentials {
61-
username = System.getenv("BINTRAY_USER")
62-
password = System.getenv("BINTRAY_API_KEY")
63-
}
64-
}
65-
}
6655
}
6756

6857
dependencies {

0 commit comments

Comments
 (0)