mirror of
https://github.com/AppleCommander/bastools.git
synced 2026-04-24 04:21:03 +00:00
ea2ec4ba4b
Bumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r6.0.1...r6.0.2) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
713 B
Groovy
26 lines
713 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':bastools-tools:bastools-tools-bt')
|
|
implementation project(':bastools-tools:bastools-tools-st')
|
|
|
|
testImplementation platform('org.junit:junit-bom:6.0.2')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
testImplementation "io.github.a2geek:clth:$clthVersion"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
|
|
def junit5SystemExit = configurations.testRuntimeClasspath.files
|
|
.find { it.name.contains('junit5-system-exit') }
|
|
jvmArgumentProviders.add({["-javaagent:$junit5SystemExit"]} as CommandLineArgumentProvider)
|
|
}
|