forked from TIGERs-Mannheim/Sumatra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
47 lines (40 loc) · 1.21 KB
/
settings.gradle
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
41
42
43
44
45
46
47
/*
* Copyright (c) 2009 - 2021, DHBW Mannheim - TIGERs Mannheim
*/
pluginManagement {
repositories {
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
id "com.gradle.enterprise" version "3.13.2"
}
rootProject.name = 'sumatra'
// Include libraries (based on Gradle) during development:
//includeBuild("../instanceables") {
// dependencySubstitution {
// substitute module("com.github.g3force:instanceables") with project(":")
// }
//}
//buildCache {
// remote(HttpBuildCache) {
// url = 'https://build-cache.tigers-mannheim.de/cache/'
// credentials {
// username = System.getenv("GRADLE_BUILD_CACHE_USERNAME") ?: "read"
// password = System.getenv("GRADLE_BUILD_CACHE_PASSWORD") ?: "I\"\"H=*#X11he9fW-=U\"k*80+lR-'uy7="
// }
// push = (System.getenv("GRADLE_BUILD_CACHE_USERNAME") != null)
// }
//}
file('modules').eachDir { dir ->
include dir.name
project(":${dir.name}").projectDir = dir
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
uploadInBackground = false
}
}