-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathsettings.gradle
62 lines (54 loc) · 1.5 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
55
56
57
58
59
60
61
62
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.17.4"
classpath "com.gradle:common-custom-user-data-gradle-plugin:2.0.1"
}
}
apply plugin: 'com.gradle.develocity'
apply plugin: "com.gradle.common-custom-user-data-gradle-plugin"
rootProject.name = 'testcontainers-examples'
includeBuild '..'
// explicit include to allow Dependabot to autodiscover subprojects
include 'kafka-cluster'
include 'linked-container'
include 'neo4j-container'
include 'redis-backed-cache'
include 'redis-backed-cache-testng'
include 'selenium-container'
include 'singleton-container'
include 'solr-container'
include 'spring-boot'
include 'cucumber'
include 'spring-boot-kotlin-redis'
include 'immudb'
include 'zookeeper'
include 'hazelcast'
include 'nats'
include 'sftp'
include 'ollama-hugging-face'
ext.isCI = System.getenv("CI") != null
buildCache {
local {
enabled = !isCI
}
remote(develocity.buildCache) {
push = isCI && !System.getenv("READ_ONLY_REMOTE_GRADLE_CACHE") && System.getenv("DEVELOCITY_ACCESS_KEY")
enabled = true
}
}
develocity {
buildScan {
server = "https://ge.testcontainers.org/"
publishing.onlyIf {
it.authenticated
}
uploadInBackground = !isCI
capture.fileFingerprints = true
}
}