Martin Dow

Results 3 comments of Martin Dow

The JUnit team's Bazel starter project (https://github.com/junit-team/junit5-samples/tree/master/junit5-jupiter-starter-bazel) only appears to work with the Java 8 Bazel toolchain. This works fine (as does not specifying `java_toolchain`): `bazel test --java_toolchain=@bazel_tools//tools/jdk:toolchain_java8 //...` Specifying...

Update on my issue above: This appears to be a problem with the homebrew installation of bazel, version `0.29.0-homebrew`. I've since used `bazelisk` to install version `0.29.0` directly and it's...

Might be useful to clarify for any other Bazel newbies like myself what the `java_junit5_test` rule in `junit5.bzl` (https://github.com/junit-team/junit5-samples/tree/master/junit5-jupiter-starter-bazel) is doing under the hood. It: 1. Declares the required JUnit5...