-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (37 loc) · 1.05 KB
/
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
39
40
41
42
43
44
45
buildscript {
ext {
springDependencyManagement = '1.0.11.RELEASE'
springBootVersion = '2.4.3'
springCloudVersion = '2020.0.1'
wavefrontVersion = '2.1.0-RC1'
}
repositories {
gradlePluginPortal()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
}
}
defaultTasks "clean", "build"
subprojects {
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
group = 'io.undertree.workshop.kafka'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = JavaVersion.VERSION_11
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
dependencyManagement {
imports {
mavenBom "com.wavefront:wavefront-spring-boot-bom:${wavefrontVersion}"
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
}