-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.gradle
54 lines (45 loc) · 1.32 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
48
49
50
51
52
53
54
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
plugins {
id "com.android.library" version "8.7.3"
id "com.android.application" version "8.7.3"
}
}
plugins {
id 'io.freefair.settings.plugin-versions' version '8.11'
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
id "com.gradle.develocity" version "3.19"
}
rootProject.name = 'dart-sass-java'
boolean isCiServer = System.getenv().containsKey("CI")
develocity {
buildScan {
publishing.onlyIf { isCiServer }
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = "yes"
}
}
buildCache {
remote(HttpBuildCache) {
url = 'https://build-cache.grefer-hosting.de/cache/'
push = isCiServer
credentials {
username = "larsgrefer"
password = providers.gradleProperty('larsgreferBuildCachePassword').getOrElse(null)
}
}
}
include "sass-embedded-protocol"
include "sass-embedded-host"
include "sass-embedded-bundled"
include "sass-embedded-bundled-ia32"
include "sass-embedded-spring5"
include "sass-embedded-spring6"
include "sass-embedded-android"
include "test-projects:spring-boot-resources"
include "test-projects:graalvm"
include "test-projects:android-app"