Remove github packages support

pull/6/head
Koitharu 4 years ago
parent dc16606239
commit 9346104e22
No known key found for this signature in database
GPG Key ID: 8E861F8CE6E7CE27

@ -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'

Loading…
Cancel
Save