-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (40 loc) · 1.09 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
46
47
48
49
plugins {
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'ru.spb.devclub'
version = '0.0.1'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
configurations {
compileOnly {
extendsFrom annotationProcessor
}
testCompile {
extendsFrom compileOnly
}
}
repositories {
jcenter()
mavenCentral()
}
dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:2.2.5.RELEASE")
}
}
dependencies {
compileOnly 'org.springframework.boot:spring-boot-starter-actuator'
compileOnly 'org.springframework:spring-jdbc'
compileOnly 'org.springframework.cloud:spring-cloud-config-client:2.2.1.RELEASE'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
compile 'org.jetbrains.kotlinx:lincheck:2.5.2'
}
test {
useJUnitPlatform()
}