File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
plugins/backward-compatibility/src/main/kotlin Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ openTestReporting-events = { module = "org.opentest4j.reporting:open-test-report
6464openTestReporting-tooling-core = { module = " org.opentest4j.reporting:open-test-reporting-tooling-core" , version.ref = " openTestReporting" }
6565openTestReporting-tooling-spi = { module = " org.opentest4j.reporting:open-test-reporting-tooling-spi" , version.ref = " openTestReporting" }
6666picocli = { module = " info.picocli:picocli" , version = " 4.7.7" }
67+ # Enable `roseau` tasks on Windows when upgrading (in junitbuild.backward-compatibility.gradle.kts)
6768roseau-cli = { module = " io.github.alien-tools:roseau-cli" , version = " 0.3.0" }
6869slf4j-julBinding = { module = " org.slf4j:slf4j-jdk14" , version = " 2.0.17" }
6970snapshotTests-junit5 = { module = " de.skuzzle.test:snapshot-tests-junit5" , version.ref = " snapshotTests" }
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import junitbuild.extensions.javaModuleName
1111import me.champeau.gradle.japicmp.JapicmpTask
1212import me.champeau.gradle.japicmp.report.stdrules.BinaryIncompatibleRule
1313import me.champeau.gradle.japicmp.report.stdrules.RecordSeenMembersSetup
14+ import org.gradle.internal.os.OperatingSystem
1415
1516plugins {
1617 java
@@ -65,6 +66,7 @@ val roseau by tasks.registering(JavaExec::class) {
6566 enabled = false
6667 }
6768 onlyIf { extension.enabled.get() }
69+ onlyIf(" https://github.com/alien-tools/roseau/issues/90" ) { ! OperatingSystem .current().isWindows }
6870
6971 mainClass = " io.github.alien.roseau.cli.RoseauCLI"
7072 classpath = files(roseauClasspath)
You can’t perform that action at this time.
0 commit comments