We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89828e5 commit 28ec3a8Copy full SHA for 28ec3a8
java/private/create_jvm_test_suite.bzl
@@ -88,6 +88,9 @@ def create_jvm_test_suite(
88
)
89
if not _contains_label(deps or [], lib_dep_label):
90
deps.append(lib_dep_label)
91
+ if "resources" in library_attributes:
92
+ # Prevent duplicate resources from appearing in classpath
93
+ kwargs.pop("resources")
94
95
tests = []
96
java/test/com/github/bazel_contrib/contrib_rules_jvm/junit5/JavaTestSuiteTest.java
@@ -6,7 +6,6 @@
6
import java.io.IOException;
7
import java.util.ArrayList;
8
import java.util.List;
9
-import java.util.concurrent.atomic.AtomicInteger;
10
import java.util.zip.ZipFile;
11
12
import static org.junit.jupiter.api.Assertions.assertEquals;
0 commit comments