We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0aa792 commit 0f11890Copy full SHA for 0f11890
2 files changed
gradle.properties
@@ -0,0 +1 @@
1
+org.gradle.caching=true
settings.gradle.kts
@@ -21,6 +21,10 @@ pluginManagement {
21
}
22
23
24
+plugins {
25
+ id("com.gradle.develocity") version "3.18.2"
26
+}
27
+
28
rootProject.name = "cloud-native-gradle-modules"
29
include("gradle-modules")
30
@@ -29,3 +33,18 @@ dependencyResolutionManagement {
33
mavenCentral()
34
31
35
36
37
+develocity {
38
+ server.set("https://develocity.sonar.build")
39
40
41
+val isCI = System.getenv("CI") != null
42
+buildCache {
43
+ local {
44
+ isEnabled = !isCI
45
+ }
46
+ remote(develocity.buildCache) {
47
+ isEnabled = true
48
+ isPush = isCI
49
50
0 commit comments