2022-03-21 16:19:51 +01:00
|
|
|
plugins {
|
2022-04-14 19:19:26 +02:00
|
|
|
kotlin("jvm") version "1.6.20"
|
2022-03-21 21:05:31 +01:00
|
|
|
java
|
2022-03-21 16:19:51 +01:00
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
2022-03-21 22:06:24 +01:00
|
|
|
group = "app.revanced"
|
2022-03-21 16:19:51 +01:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2022-04-10 00:51:24 +02:00
|
|
|
mavenLocal()
|
2022-03-21 16:19:51 +01:00
|
|
|
maven {
|
2022-05-07 01:23:58 +02:00
|
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher") // note the "r"!
|
2022-03-21 16:19:51 +01:00
|
|
|
credentials {
|
2022-03-21 21:05:31 +01:00
|
|
|
// 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!
|
2022-03-21 16:19:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-05-23 21:00:27 +02:00
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.21")
|
2022-03-21 16:19:51 +01:00
|
|
|
|
2022-05-07 21:42:18 +02:00
|
|
|
implementation("app.revanced:revanced-patcher:1.+")
|
2022-05-23 21:00:27 +02:00
|
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.21")
|
2022-03-21 21:05:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
|
|
|
}
|
|
|
|
|
2022-04-10 00:51:24 +02:00
|
|
|
val isGitHubCI = System.getenv("GITHUB_ACTOR") != null
|
|
|
|
|
2022-03-21 21:05:31 +01:00
|
|
|
publishing {
|
|
|
|
repositories {
|
2022-04-10 00:51:24 +02:00
|
|
|
if (isGitHubCI) {
|
|
|
|
maven {
|
|
|
|
name = "GitHubPackages"
|
2022-05-07 01:23:58 +02:00
|
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patches") // note the "s"!
|
2022-04-10 00:51:24 +02:00
|
|
|
credentials {
|
|
|
|
username = System.getenv("GITHUB_ACTOR")
|
|
|
|
password = System.getenv("GITHUB_TOKEN")
|
|
|
|
}
|
2022-03-21 21:05:31 +01:00
|
|
|
}
|
2022-04-10 00:51:24 +02:00
|
|
|
} else {
|
|
|
|
mavenLocal()
|
2022-03-21 21:05:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
publications {
|
|
|
|
register<MavenPublication>("gpr") {
|
|
|
|
from(components["java"])
|
|
|
|
}
|
|
|
|
}
|
2022-05-07 01:23:58 +02:00
|
|
|
}
|