Skip to content

Commit 965265e

Browse files
c-mitacopybara-github
authored andcommitted
Remove now unrequired 0.8.14 version specifiers.
These were added only temporarily to aid with Bazel's migration over to Jacoco 0.8.14 and can now be removed. Fixes #27615 PiperOrigin-RevId: 840200567 Change-Id: I62216060a443bf728b95ea86da4468bd9a0a026a
1 parent 1bf36f0 commit 965265e

File tree

3 files changed

+9
-9
lines changed
  • src/java_tools
    • buildjar/java/com/google/devtools/build/buildjar
    • junitrunner
      • javatests/com/google/testing/coverage
      • java/com/google/testing/coverage

3 files changed

+9
-9
lines changed

src/java_tools/buildjar/java/com/google/devtools/build/buildjar/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ java_library(
106106
"//third_party:error_prone_annotations",
107107
"//third_party:guava",
108108
"//third_party:jsr305",
109-
"//third_party/java/jacoco:core-0.8.14",
109+
"//third_party/java/jacoco:core",
110110
],
111111
)
112112

src/java_tools/junitrunner/java/com/google/testing/coverage/BUILD

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ java_binary(
2424
":JacocoCoverageLib",
2525
":bitfield",
2626
"//third_party:guava",
27-
"//third_party/java/jacoco:blaze-agent-0.8.14",
28-
"//third_party/java/jacoco:core-0.8.14",
29-
"//third_party/java/jacoco:report-0.8.14",
27+
"//third_party/java/jacoco:blaze-agent",
28+
"//third_party/java/jacoco:core",
29+
"//third_party/java/jacoco:report",
3030
],
3131
)
3232

@@ -46,9 +46,9 @@ java_library(
4646
deps = [
4747
":bitfield",
4848
"//third_party:guava",
49-
"//third_party/java/jacoco:blaze-agent-0.8.14",
50-
"//third_party/java/jacoco:core-0.8.14",
51-
"//third_party/java/jacoco:report-0.8.14",
49+
"//third_party/java/jacoco:blaze-agent",
50+
"//third_party/java/jacoco:core",
51+
"//third_party/java/jacoco:report",
5252
],
5353
)
5454

src/java_tools/junitrunner/javatests/com/google/testing/coverage/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ java_test(
2323
"//third_party:junit4",
2424
"//third_party:mockito",
2525
"//third_party:truth",
26-
"//third_party/java/jacoco:core-0.8.14",
27-
"//third_party/java/jacoco:report-0.8.14",
26+
"//third_party/java/jacoco:core",
27+
"//third_party/java/jacoco:report",
2828
],
2929
)
3030

0 commit comments

Comments
 (0)