forked from Jwhyee/effective-java-study
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (22 loc) · 678 Bytes
/
build.gradle
File metadata and controls
26 lines (22 loc) · 678 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
plugins {
id 'java'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.junit.jupiter:junit-jupiter:5.8.1'
implementation 'org.projectlombok:lombok:1.18.26'
implementation 'org.assertj:assertj-core:3.24.2'
implementation 'org.junit.jupiter:junit-jupiter:5.8.1'
compileOnly "com.google.auto.value:auto-value-annotations:1.6"
annotationProcessor "com.google.auto.value:auto-value:1.6"
implementation 'com.google.guava:guava:30.1-jre'
compileOnly 'org.projectlombok:lombok'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
test {
useJUnitPlatform()
}