summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorThibault Gagnaux <thibault.gagnaux@bit.admin.ch>2021-06-29 09:02:17 +0200
committerThibault Gagnaux <thibault.gagnaux@bit.admin.ch>2021-06-29 09:02:17 +0200
commite7fc5336c818e6ce9f81069df73c258d116acc9f (patch)
tree13d784f07f80d766954760e3a5c9a0b37d83fcb3 /build.gradle
parentf3d085304bad105e65ce0c77f25ae59161fd8776 (diff)
downloadfrege-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.gradle12
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 {