-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
33 lines (29 loc) · 1014 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
// This is an empty umbrella build including all the component builds.
// This build is not necessarily needed. The component builds work independently.
rootProject.name = "LPhyB2"
include("lphyb2")
pluginManagement {
// the repos to load Gradle plugins
repositories {
mavenCentral()
// maven {
// // to local build/plugins
// url = uri("${rootDir.parent}/GradlePlugins/platforms/build/releases/")
// println("Temp repo : ${url}")
// }
// add sonatype snapshots repository
maven {
url=uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
gradlePluginPortal()
}
}
// https://docs.gradle.org/current/userguide/build_cache.html
// https://docs.gradle.org/current/userguide/build_cache_use_cases.html
buildCache {
local {
directory = File(rootDir, "build-cache")
removeUnusedEntriesAfterDays = 30
println("Creating local build cache : ${directory}")
}
}