diff options
author | Thibault Gagnaux <thibault.gagnaux@bit.admin.ch> | 2021-06-29 09:02:17 +0200 |
---|---|---|
committer | Thibault Gagnaux <thibault.gagnaux@bit.admin.ch> | 2021-06-29 09:02:17 +0200 |
commit | e7fc5336c818e6ce9f81069df73c258d116acc9f (patch) | |
tree | 13d784f07f80d766954760e3a5c9a0b37d83fcb3 /build.gradle | |
parent | f3d085304bad105e65ce0c77f25ae59161fd8776 (diff) | |
download | frege-gradle-plugin-e7fc5336c818e6ce9f81069df73c258d116acc9f.tar.gz frege-gradle-plugin-e7fc5336c818e6ce9f81069df73c258d116acc9f.tar.bz2 frege-gradle-plugin-e7fc5336c818e6ce9f81069df73c258d116acc9f.zip |
Switches from groovy's spock testing framework back to java
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 12 |
1 files changed, 10 insertions, 2 deletions
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 { |