1

Initial import

This commit is contained in:
2024-10-24 20:59:28 +02:00
commit 63a56286bf
22 changed files with 1769 additions and 0 deletions

29
build.gradle Normal file
View File

@@ -0,0 +1,29 @@
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"
}
}