mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2025-05-10 20:55:38 +02:00
22 lines
606 B
Kotlin
22 lines
606 B
Kotlin
rootProject.name = "revanced-patches"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
maven {
|
|
name = "GitHubPackages"
|
|
url = uri("https://maven.pkg.github.com/revanced/registry")
|
|
credentials {
|
|
username = providers.gradleProperty("gpr.user").getOrElse(System.getenv("GITHUB_ACTOR"))
|
|
password = providers.gradleProperty("gpr.key").getOrElse(System.getenv("GITHUB_TOKEN"))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("app.revanced.patches") version "1.0.0-dev.6"
|
|
}
|
|
|
|
include(":patches:stub")
|