29 lines
565 B
Groovy
29 lines
565 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
group = 'com.devsoap'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
api 'jakarta.json.bind:jakarta.json.bind-api:3.0.1'
|
|
api 'jakarta.json:jakarta.json-api:2.1.3'
|
|
|
|
implementation 'org.assertj:assertj-core:3.26.3'
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testImplementation 'org.eclipse:yasson:3.0.4'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
} |