-
Notifications
You must be signed in to change notification settings - Fork 58
/
settings.gradle
51 lines (44 loc) · 1.61 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url "https://repo.spring.io/release" }
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}
}
plugins {
id 'com.gradle.develocity' version '3.17.6'
id 'io.spring.ge.conventions' version '0.0.17' apply false
}
startParameter.noBuildScan = startParameter.taskNames.contains('format')
apply plugin: 'io.spring.ge.conventions'
include 'spring-pulsar'
include 'spring-pulsar-bom'
include 'spring-pulsar-cache-provider'
include 'spring-pulsar-cache-provider-caffeine'
include 'spring-pulsar-reactive'
include 'spring-pulsar-dependencies'
include 'spring-pulsar-sample-apps:sample-imperative-produce-consume'
include 'spring-pulsar-sample-apps:sample-failover-custom-router'
include 'spring-pulsar-sample-apps:sample-pulsar-functions:sample-signup-app'
include 'spring-pulsar-sample-apps:sample-pulsar-functions:sample-signup-function'
include 'spring-pulsar-sample-apps:sample-reactive'
include 'spring-pulsar-sample-apps:sample-pulsar-binder'
include 'spring-pulsar-sample-apps:sample-pulsar-reader'
include 'spring-pulsar-docs'
include 'spring-pulsar-test'
include 'integration-tests'
rootProject.name = "spring-pulsar-dist"
rootProject.children.findAll { !it.name.startsWith('sample-') }
.each {project -> project.buildFileName = "${project.name}.gradle" }
settings.gradle.projectsLoaded {
develocity {
buildScan {
// only publish build scan if explicitly requested w/ --scan
publishing.onlyIf { false }
termsOfUseUrl = 'https://gradle.com/terms-of-service'
termsOfUseAgree = 'yes'
}
}
}