Co-Authored-By: Eric Ahn <w@chill.dev> Co-Authored-By: inotia00 <108592928+inotia00@users.noreply.github.com>
34 lines
1,003 B
Text
34 lines
1,003 B
Text
rootProject.name = "morphe-patches"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
gradlePluginPortal()
|
|
google()
|
|
maven {
|
|
name = "GitHubPackages"
|
|
url = uri("https://maven.pkg.github.com/MorpheApp/registry")
|
|
credentials {
|
|
username = providers.gradleProperty("gpr.user").getOrElse(System.getenv("GITHUB_ACTOR"))
|
|
password = providers.gradleProperty("gpr.key").getOrElse(System.getenv("GITHUB_TOKEN"))
|
|
}
|
|
}
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("app.morphe.patches") version "1.2.0"
|
|
}
|
|
|
|
settings {
|
|
extensions {
|
|
defaultNamespace = "app.morphe.extension"
|
|
|
|
// Must resolve to an absolute path (not relative),
|
|
// otherwise the extensions in subfolders will fail to find the proguard config.
|
|
proguardFiles(rootProject.projectDir.resolve("extensions/proguard-rules.pro").toString())
|
|
}
|
|
}
|
|
|
|
include(":patches:stub")
|