-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle
33 lines (27 loc) · 1.24 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
import java.nio.charset.Charset
// From https://docs.gradle.org/current/userguide/github-actions.html
// To run a build scan locally, either force this block to kick in by: $ CI=true ./gradlew build
// Or run the build with: $ ./gradlew build --scan
plugins {
id "com.gradle.enterprise" version "3.14.1"
}
gradleEnterprise {
if (System.getenv("CI") != null) {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}
// To work against source of Mats3: Include the Mats3 project, sibling to this project.
// NOTE! This should never be committed!! NOTE!
//includeBuild '../mats3'
rootProject.name = 'matsbrokermonitor'
include 'matsbrokermonitor-api', 'matsbrokermonitor-activemq', 'matsbrokermonitor-jms',
'matsbrokermonitor-htmlgui', 'matsbrokermonitor-app',
'matsbrokermonitor-broadcastandcontrol', 'matsbrokermonitor-broadcastreceiver',
'matsbrokermonitor-stbhealthcheck'
println "** Java: ${ System.getProperty('java.version') }, Groovy: $GroovySystem.version," +
" Gradle: ${ gradle.gradleVersion }, Charset.defaultCharset(): ${Charset.defaultCharset() }" +
" (printed from settings.gradle)"