mirror of
https://github.com/elastic/logstash.git
synced 2025-04-22 05:37:21 -04:00
This commit is a backport of three PRs #13182 #13183 #13184 Mainly it switched the Gradle to version 7 and applies fixes to make it run.
17 lines
No EOL
265 B
Groovy
17 lines
No EOL
265 B
Groovy
plugins {
|
|
id 'groovy'
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
|
|
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.7.2")
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |