plugins { id("java") } group = "net.projecttl" version = "0.1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { compileOnly(project(":px32-bot-api")) testImplementation(platform("org.junit:junit-bom:5.10.0")) testImplementation("org.junit.jupiter:junit-jupiter") } tasks.test { useJUnitPlatform() }