-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
33 lines (28 loc) · 979 Bytes
/
settings.gradle.kts
File metadata and controls
33 lines (28 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
rootProject.name = "morphe-patches"
pluginManagement {
repositories {
gradlePluginPortal()
google()
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/MorpheApp/registry")
credentials {
username = providers.gradleProperty("gpr.user").orNull ?: System.getenv("GITHUB_ACTOR")
password = providers.gradleProperty("gpr.key").orNull ?: System.getenv("GITHUB_TOKEN")
}
}
maven { url = uri("https://jitpack.io") }
}
}
plugins {
id("app.morphe.patches") version "1.3.2"
}
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")