plugins { id 'java-library' } group = 'dev.pcvolkmer.mv64e' version = '0.1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { api 'com.fasterxml.jackson.core:jackson-databind:2.12.7.2' compileOnly("org.projectlombok:lombok:1.18.38") annotationProcessor("org.projectlombok:lombok:1.18.38") testCompileOnly("org.projectlombok:lombok:1.18.38") testAnnotationProcessor("org.projectlombok:lombok:1.18.38") testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation 'org.junit.jupiter:junit-jupiter' } test { useJUnitPlatform() }