-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (25 loc) · 876 Bytes
/
build.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
plugins {
id 'org.springframework.boot' version '2.5.6' apply false
id 'io.freefair.lombok' version '5.3.0' apply false
}
group 'com.example'
version '1.0-SNAPSHOT'
String springCloudVersion = '2020.0.4'
subprojects {
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.freefair.lombok'
repositories {
mavenCentral()
}
dependencies {
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
implementation(platform("org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"))
implementation platform("org.keycloak.bom:keycloak-adapter-bom:15.0.2")
// compileOnly 'org.projectlombok:lombok:1.18.12'
// annotationProcessor 'org.projectlombok:lombok:1.18.12'
}
test {
useJUnitPlatform()
}
}