mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-09 21:59:27 +01:00
60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
plugins {
|
|
kotlin("jvm") version "1.6.21"
|
|
java
|
|
`maven-publish`
|
|
}
|
|
|
|
group = "app.revanced"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven {
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher") // note the "r"!
|
|
credentials {
|
|
// DO NOT set these variables in the project's gradle.properties.
|
|
// Instead, you should set them in:
|
|
// Windows: %homepath%\.gradle\gradle.properties
|
|
// Linux: ~/.gradle/gradle.properties
|
|
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR") // DO NOT CHANGE!
|
|
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN") // DO NOT CHANGE!
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.21")
|
|
|
|
implementation("app.revanced:revanced-patcher:1.0.0-dev.18")
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.21")
|
|
}
|
|
|
|
java {
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
val isGitHubCI = System.getenv("GITHUB_ACTOR") != null
|
|
|
|
publishing {
|
|
repositories {
|
|
if (isGitHubCI) {
|
|
maven {
|
|
name = "GitHubPackages"
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patches") // note the "s"!
|
|
credentials {
|
|
username = System.getenv("GITHUB_ACTOR")
|
|
password = System.getenv("GITHUB_TOKEN")
|
|
}
|
|
}
|
|
} else {
|
|
mavenLocal()
|
|
}
|
|
}
|
|
publications {
|
|
register<MavenPublication>("gpr") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|