-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
38 lines (32 loc) · 1.03 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
plugins {
id 'org.springframework.boot' version '2.1.4.RELEASE'
id 'java'
id 'groovy'
}
apply plugin: 'io.spring.dependency-management'
group = 'validation-workshop'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
targetCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
test {
exclude '**/**AfterRefactor*'
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
compile group: 'com.google.guava', name: 'guava', version: '27.1-jre'
compile group: 'io.vavr', name: 'vavr', version: '0.9.2'
compile group: 'io.vavr', name: 'vavr-jackson', version: '0.9.2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testCompile group: 'org.spockframework', name: 'spock-core', version: '1.3-groovy-2.5'
}