plugins { id 'java-gradle-plugin' } repositories { mavenCentral() } dependencies { testImplementation('org.junit.jupiter:junit-jupiter-api:5.7.2') testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.7.2') } group = 'ch.fhnw.thga' version = '0.0.1-SNAPSHOT' gradlePlugin { plugins { fregePlugin { id = 'ch.fhnw.thga.frege' implementationClass = 'ch.fhnw.thga.gradleplugins.FregePlugin' } } } tasks.withType(Test).configureEach { useJUnitPlatform() }