mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
54 lines
2 KiB
Text
54 lines
2 KiB
Text
pluginManagement {
|
|
// TODO: remove this once https://github.com/gradle/gradle/issues/23572 is fixed
|
|
val (gprUser, gprKey) = if (File(".gradle/gradle.properties").exists()) {
|
|
File(".gradle/gradle.properties").inputStream().use {
|
|
java.util.Properties().apply { load(it) }.let {
|
|
it.getProperty("gpr.user") to it.getProperty("gpr.key")
|
|
}
|
|
}
|
|
} else {
|
|
null to null
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
maven {
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
|
|
credentials {
|
|
username = gprUser ?: providers.gradleProperty("gpr.user").orNull ?: System.getenv("GITHUB_ACTOR")
|
|
password = gprKey ?: providers.gradleProperty("gpr.key").orNull ?: System.getenv("GITHUB_TOKEN")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
// TODO: remove this once https://github.com/gradle/gradle/issues/23572 is fixed
|
|
val (gprUser, gprKey) = if (File(".gradle/gradle.properties").exists()) {
|
|
File(".gradle/gradle.properties").inputStream().use {
|
|
java.util.Properties().apply { load(it) }.let {
|
|
it.getProperty("gpr.user") to it.getProperty("gpr.key")
|
|
}
|
|
}
|
|
} else {
|
|
null to null
|
|
}
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
maven {
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
|
|
credentials {
|
|
username = gprUser ?: providers.gradleProperty("gpr.user").orNull ?: System.getenv("GITHUB_ACTOR")
|
|
password = gprKey ?: providers.gradleProperty("gpr.key").orNull ?: System.getenv("GITHUB_TOKEN")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "ReVanced Manager"
|
|
include(":app")
|