plugins { id 'java' } group = 'me.zacharias' version = '1.0-SNAPSHOT' repositories { mavenCentral() } dependencies { testImplementation platform('org.junit:junit-bom:5.10.0') testImplementation 'org.junit.jupiter:junit-jupiter' implementation "org.jsoup:jsoup:1.20.1" implementation 'io.github.classgraph:classgraph:4.8.158' implementation project(":Core") } test { useJUnitPlatform() }