From 9346104e2238a6b72777f1455ffebfa8f5d46640 Mon Sep 17 00:00:00 2001 From: Koitharu Date: Tue, 15 Mar 2022 07:29:09 +0200 Subject: [PATCH] Remove github packages support --- build.gradle | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/build.gradle b/build.gradle index fc5cd550..b014e95c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,6 @@ plugins { id 'java-library' id 'org.jetbrains.kotlin.jvm' version '1.6.20-M1' - id 'maven-publish' } group = 'org.koitharu' @@ -30,24 +29,6 @@ compileTestKotlin { kotlinOptions.jvmTarget = '1.8' } -publishing { - repositories { - maven { - name = "GitHubPackages" - url = uri("https://maven.pkg.github.com/nv95/kotatsu-parsers") - credentials { - username = project.findProperty("gpr.user") ?: System.getenv("USERNAME") - password = project.findProperty("gpr.key") ?: System.getenv("TOKEN") - } - } - } - publications { - gpr(MavenPublication) { - from(components.java) - } - } -} - dependencies { implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0' implementation 'com.squareup.okhttp3:okhttp:4.9.3'