Skip to content

Commit 9fbda5b

Browse files
c-mitasatyanandak
authored andcommitted
Fix list comprehension for importing versioned jacoco core jars
Every import was actually the "latest" version instead of the requested version. Required for #26383 Partial commit for third_party/*, see #27801. Change-Id: I73c4f7007e4a0661835b0d21b845073dc3526b70 Signed-off-by: satyanandak <[email protected]>
1 parent abfa036 commit 9fbda5b

File tree

1 file changed

+2
-2
lines changed
  • third_party/java/jacoco

1 file changed

+2
-2
lines changed

third_party/java/jacoco/BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ distrib_java_import(
7777
distrib_java_import(
7878
name = "core-%s" % VERSION,
7979
enable_distributions = ["debian"],
80-
jars = ["org.jacoco.core-%s.jar" % LASTVERSION],
81-
srcjar = "org.jacoco.core-%s-sources.jar" % LASTVERSION,
80+
jars = ["org.jacoco.core-%s.jar" % VERSION],
81+
srcjar = "org.jacoco.core-%s-sources.jar" % VERSION,
8282
exports = [
8383
"//third_party:asm",
8484
"//third_party:asm-commons",

0 commit comments

Comments
 (0)