-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsettings.gradle
49 lines (41 loc) · 1.2 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
pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://repo.spring.io/milestone' }
}
}
plugins {
id "io.freefair.settings.plugin-versions" version "8.12"
id "com.gradle.develocity" version "3.19.1"
}
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 = "freefair"
password = providers.gradleProperty('freefairBuildCachePassword').getOrElse(null)
}
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven { url = 'https://repo.spring.io/milestone' }
}
}
include 'okhttp-spring-client'
include 'okhttp-spring-boot-dependencies'
include 'okhttp-spring-boot-autoconfigure'
include 'starters:okhttp-spring-boot-starter'
include 'starters:okhttp4-spring-boot-starter'
include 'starters:okhttp5-spring-boot-starter'
rootProject.name = 'okhttp-spring-boot'