-
Notifications
You must be signed in to change notification settings - Fork 28
/
settings.gradle
43 lines (34 loc) · 1.23 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
pluginManagement {
repositories {
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == 'org.springframework.boot') {
useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
}
}
}
}
plugins {
id 'com.gradle.develocity' version '3.18'
id 'io.spring.develocity.conventions' version '0.0.20'
}
rootProject.name = 'prometheus-rsocket-proxy'
develocity {
server = 'https://ge.micrometer.io'
}
// The build cache settings should be the following, but build cache is not enabled in gradle.properties at the moment
buildCache {
remote(develocity.buildCache) {
server = 'https://ge.micrometer.io'
}
}
include 'prometheus-rsocket-proxy'
project(':prometheus-rsocket-proxy').projectDir = new File(rootProject.projectDir, 'proxy')
include 'prometheus-rsocket-client'
project(':prometheus-rsocket-client').projectDir = new File(rootProject.projectDir, 'client')
include 'prometheus-rsocket-proxy-server'
project(':prometheus-rsocket-proxy-server').projectDir = new File(rootProject.projectDir, 'proxy-server')
include 'prometheus-rsocket-spring'
project(':prometheus-rsocket-spring').projectDir = new File(rootProject.projectDir, 'starter-spring')