Skip to content

Commit 761c91d

Browse files
authored
Make tests runnable from IntelliJ IDEA (#67)
1 parent 21e6e94 commit 761c91d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

build.gradle.kts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
plugins {
2-
base
2+
java
33
id("net.researchgate.release") version "2.8.1"
44
}
55

66
configure<net.researchgate.release.ReleaseExtension> {
77
newVersionCommitMessage = "[Gradle Release Plugin] - [skip ci] new version commit: "
88
tagTemplate = "v\$version"
99
}
10+
11+
allprojects {
12+
apply(plugin = "java")
13+
tasks {
14+
test {
15+
useJUnitPlatform()
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)