From e7fc5336c818e6ce9f81069df73c258d116acc9f Mon Sep 17 00:00:00 2001 From: Thibault Gagnaux Date: Tue, 29 Jun 2021 09:02:17 +0200 Subject: Switches from groovy's spock testing framework back to java --- build.gradle | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index 728043c..69dd68c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,4 @@ plugins { - id 'groovy' id 'java-gradle-plugin' } @@ -8,9 +7,18 @@ repositories { } dependencies { - testImplementation group: 'org.spockframework', name: 'spock-core', version: '2.0-groovy-3.0' testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2") + +} + +gradlePlugin { + plugins { + fregePlugin { + id = 'ch.fhnw.thga.frege' + implementationClass = 'ch.fhnw.thga.gradleplugins.FregePlugin' + } + } } tasks.withType(Test).configureEach { -- cgit