plugins { id 'java' } group = 'me.zacharias' version = '1.0-SNAPSHOT' repositories { mavenCentral() mavenLocal() } dependencies { implementation "me.zacharias.neurodock:Core:1.3" implementation 'com.formdev:flatlaf:3.4.1' testImplementation platform('org.junit:junit-bom:6.0.0') testImplementation 'org.junit.jupiter:junit-jupiter' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } test { useJUnitPlatform() }