From 097b5823a5ca63e5b3dd5ca95e4e959e78dd8de1 Mon Sep 17 00:00:00 2001 From: beltra Date: Thu, 7 Nov 2024 20:56:17 +0100 Subject: [PATCH] Remove publication to maven --- build.gradle.kts | 50 ------------------------------------------------ 1 file changed, 50 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 9ed1416786..9c89eb41d2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -103,53 +103,3 @@ tasks { dependsOn("generatePatchesFiles") } } - -publishing { - repositories { - maven { - name = "GitHubPackages" - url = uri("https://maven.pkg.github.com/revanced/revanced-patches") - credentials { - username = System.getenv("GITHUB_ACTOR") - password = System.getenv("GITHUB_TOKEN") - } - } - } - - publications { - create("revanced-patches-publication") { - from(components["java"]) - - pom { - name = "ReVanced Patches" - description = "Patches for ReVanced." - url = "https://revanced.app" - - licenses { - license { - name = "GNU General Public License v3.0" - url = "https://www.gnu.org/licenses/gpl-3.0.en.html" - } - } - developers { - developer { - id = "ReVanced" - name = "ReVanced" - email = "contact@revanced.app" - } - } - scm { - connection = "scm:git:git://github.com/revanced/revanced-patches.git" - developerConnection = "scm:git:git@github.com:revanced/revanced-patches.git" - url = "https://github.com/revanced/revanced-patches" - } - } - } - } -} - -signing { - useGpgCmd() - - sign(publishing.publications["revanced-patches-publication"]) -}