-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
43 lines (36 loc) Β· 1.14 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
plugins {
id "java"
id "org.springframework.boot" version "2.2.2.RELEASE" apply false
id "io.spring.dependency-management" version "1.0.8.RELEASE"
}
allprojects {
repositories {
mavenCentral()
jcenter()
}
}
subprojects {
apply plugin: "java"
apply plugin: "groovy"
apply plugin: "org.springframework.boot"
apply plugin: "io.spring.dependency-management"
group = "com.hongsi"
version = "1.0.0"
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
implementation "org.springframework.boot:spring-boot-starter"
implementation "org.projectlombok:lombok"
annotationProcessor "org.projectlombok:lombok"
testImplementation "org.projectlombok:lombok"
testAnnotationProcessor "org.projectlombok:lombok"
testImplementation "org.springframework.boot:spring-boot-starter-test"
testImplementation "org.spockframework:spock-core:1.2-groovy-2.4"
testImplementation "org.spockframework:spock-spring:1.2-groovy-2.4"
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
}