-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (26 loc) · 917 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
plugins {
id 'java-library'
id 'maven-publish'
id 'signing'
}
dependencies {
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${jacksonVersion}"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jacksonVersion}"
implementation "dev.failsafe:failsafe:${failsafeVersion}"
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
testImplementation "com.github.tomakehurst:wiremock-jre8:${wireMockVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-params:${junitJupiterVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}"
}
test {
useJUnitPlatform()
}
wrapper {
gradleVersion = '7.4.2'
}
repositories {
mavenLocal()
mavenCentral()
}
apply from: "${rootDir}/gradle/publications.gradle"