Skip to content

Commit 500981b

Browse files
author
Ny Saechao
committed
Apply changes from pantsbuild#8132
1 parent 51f28b7 commit 500981b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

3rdparty/jvm/com/twitter/scoverage/BUILD

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
# https://github.com/twitter-forks/scalac-scoverage-plugin. PR for the modifications
66
# on original scoverage repo here: https://github.com/scoverage/scalac-scoverage-plugin/pull/267.
77
# In future, we should ping OSS Scoverage to get that PR merged and consume scoverage directly
8-
# from there.
8+
# from there. Version 1.0.2 incorporates the changes in the following PR:
9+
# https://github.com/scoverage/scalac-scoverage-plugin/pull/275.
910

1011
jar_library(name='scalac-scoverage-plugin',
1112
jars=[
12-
scala_jar(org='com.twitter.scoverage', name='scalac-scoverage-plugin', rev='1.0.1-twitter'),
13+
scala_jar(org='com.twitter.scoverage', name='scalac-scoverage-plugin', rev='1.0.2-twitter'),
1314
],
1415
)

src/python/pants/backend/jvm/subsystems/scoverage_platform.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ def scoverage_jar(self):
4949
JarDependency(
5050
org="com.twitter.scoverage",
5151
name="scalac-scoverage-plugin_2.12",
52-
rev="1.0.1-twitter",
52+
rev="1.0.2-twitter",
5353
),
5454
JarDependency(
5555
org="com.twitter.scoverage",
5656
name="scalac-scoverage-runtime_2.12",
57-
rev="1.0.1-twitter",
57+
rev="1.0.2-twitter",
5858
),
5959
]
6060

src/python/pants/backend/jvm/tasks/coverage/scoverage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def register_options(cls, register):
2828

2929
def scoverage_jar(name, **kwargs):
3030
return JarDependency(
31-
org="com.twitter.scoverage", name=name, rev="1.0.1-twitter", **kwargs
31+
org="com.twitter.scoverage", name=name, rev="1.0.2-twitter", **kwargs
3232
)
3333

3434
def slf4j_jar(name):

0 commit comments

Comments
 (0)