-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle.kts
40 lines (35 loc) · 907 Bytes
/
settings.gradle.kts
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
34
35
36
37
38
39
40
rootProject.name = "warlock3"
include(":core")
include(":stormfront")
include(":app")
include(":android")
include(":compose")
include(":scripting")
include(":macro")
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.hq.hydraulic.software")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
mavenLocal()
}
}
plugins {
// See https://splitties.github.io/refreshVersions/
id("de.fayard.refreshVersions") version "0.60.5"
}
refreshVersions {
// work-around https://github.com/Splitties/refreshVersions/issues/640
file("build/tmp/refreshVersions").mkdirs()
versionsPropertiesFile = file("build/tmp/refreshVersions/versions.properties")
rejectVersionIf {
candidate.stabilityLevel.isLessStableThan(current.stabilityLevel)
}
}