blob: d889b1f5dcbee37322d6c65ad01ad277167d92e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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()
}
|