-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
33 lines (29 loc) · 1.22 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
pluginManagement {
plugins {
id 'com.gradle.enterprise' version "$gradleEnterpriseVersion"
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
id 'org.jetbrains.kotlin.kapt' version "$kotlinVersion"
id "org.jetbrains.kotlin.plugin.allopen" version "$kotlinVersion"
id "com.github.ben-manes.versions" version "$versionsPluginVersion"
id 'net.researchgate.release' version "$releasePluginVersion"
id 'com.github.johnrengelman.shadow' version "$shadowVersion"
id "org.jetbrains.kotlin.plugin.jpa" version "$kotlinVersion"
id 'com.google.protobuf' version "$protobufPluginVersion"
id 'com.github.jk1.dependency-license-report' version "$dependencyLicenseReportVersion"
}
}
plugins {
// Like --scan option to gradle
id "com.gradle.enterprise"
}
// Configuration of com.gradle.enterprise (build scan) plugin
gradleEnterprise {
buildScan {
// Accept the license agreement for com.gradle.build-scan plugin
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
// Always publish scan (no more need for --scan option)
publishAlways()
}
}
rootProject.name = 'greeter-microservice'