forked from thombergs/code-examples
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (22 loc) · 629 Bytes
/
build.gradle
File metadata and controls
26 lines (22 loc) · 629 Bytes
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
buildscript {
repositories {
jcenter()
}
}
apply plugin: 'java'
apply plugin: 'java-library'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.6'
annotationProcessor 'org.projectlombok:lombok:1.18.6'
implementation 'javax.validation:validation-api:2.0.1.Final'
runtimeOnly 'org.hibernate:hibernate-validator:6.0.17.Final'
testRuntimeOnly 'org.hibernate:hibernate-validator:6.0.17.Final'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.0.1'
testImplementation 'org.assertj:assertj-core:2.6.0'
}