-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (38 loc) · 1.02 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
44
plugins {
id 'java'
id 'idea'
id "maven-publish"
id "io.freefair.lombok" version "8.1.0"
id "jacoco"
}
group = 'sh.casey.ankiconnect'
version project.hasProperty('version') ? version : '0.0.1'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.slf4j:slf4j-api:2.0.7'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.5'
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'commons-codec:commons-codec:1.16.0'
testImplementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.20.0'
testImplementation 'org.apache.logging.log4j:log4j:2.20.0'
}
test {
useJUnitPlatform()
}
publishing {
publications {
gpr(MavenPublication) {
from(components.java)
}
}
}
jacocoTestReport {
reports {
xml.required = true
}
}