-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (26 loc) · 904 Bytes
/
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
plugins {
id "java-library"
}
repositories {
jcenter()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
annotationProcessor "com.google.auto.service:auto-service:1.+"
api "com.fasterxml.jackson.core:jackson-annotations:2.13.+"
api "com.fasterxml.jackson.core:jackson-databind:2.13.+"
implementation "com.google.auto:auto-common:0.+"
implementation "com.google.auto.service:auto-service-annotations:1.+"
implementation "com.squareup:javapoet:1.+"
implementation "org.checkerframework:javacutil:3.+"
if (org.gradle.internal.jvm.Jvm.current().toolsJar != null) {
testRuntimeOnly files(org.gradle.internal.jvm.Jvm.current().toolsJar)
}
testImplementation(platform('org.junit:junit-bom:5.8.+'))
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation "com.google.testing.compile:compile-testing:0.+"
}
test {
useJUnitPlatform()
}