From d214d727b2d33a6cbeef6cbd49c92405aef87806 Mon Sep 17 00:00:00 2001 From: Said Tahsin Dane Date: Sat, 19 Mar 2022 15:56:15 +0100 Subject: [PATCH] Remove bintray (#11) * Remove bintray * Remove bintray --- .github/workflows/release.yml | 4 +--- README.md | 1 - auto-manifest-plugin/build.gradle.kts | 11 ----------- 3 files changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c8ee50..a468760 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,10 +13,8 @@ jobs: - name: Checkout the repo uses: actions/checkout@v2 - name: Publish the plugin artifacts - run: ./gradlew publish publishPlugins -Pgradle.publish.key="$GRADLE_KEY" -Pgradle.publish.secret="$GRADLE_SECRET" + run: ./gradlew publishPlugins -Pgradle.publish.key="$GRADLE_KEY" -Pgradle.publish.secret="$GRADLE_SECRET" env: - BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }} - BINTRAY_USER: ${{ secrets.BINTRAY_USER }} GRADLE_KEY: ${{ secrets.GRADLE_KEY }} GRADLE_SECRET: ${{ secrets.GRADLE_SECRET }} diff --git a/README.md b/README.md index ddc4b94..95ed233 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,6 @@ Here comes AutoManifest Gradle Plugin to rescue 🚀 Configuration ------------- -[ ![Bintray](https://img.shields.io/bintray/v/gradleup/maven/auto-manifest) ](https://bintray.com/gradleup/maven/auto-manifest/_latestVersion) [ ![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) Add the plugin in your `build.gradle` file (preferably in root one) diff --git a/auto-manifest-plugin/build.gradle.kts b/auto-manifest-plugin/build.gradle.kts index 968bb62..5648b75 100644 --- a/auto-manifest-plugin/build.gradle.kts +++ b/auto-manifest-plugin/build.gradle.kts @@ -52,17 +52,6 @@ publishing { } } } - - repositories { - maven { - name = "bintray" - url = uri("https://api.bintray.com/maven/gradleup/maven/auto-manifest/;publish=1;override=1") - credentials { - username = System.getenv("BINTRAY_USER") - password = System.getenv("BINTRAY_API_KEY") - } - } - } } dependencies {