Skip to content

Commit

Permalink
Merge pull request #550 from jhnj/johan/scala-import-return-defaultinfo
Browse files Browse the repository at this point in the history
Add DefaultInfo provider to outputs of scala_import
  • Loading branch information
johnynek authored Jun 29, 2018
2 parents 5e61d4e + 1e02ee9 commit 6769652
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scala/scala_import.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ def _scala_import_impl(ctx):
),
jars_to_labels = jars2labels,
providers = [
_create_provider(current_jars, transitive_runtime_jars, jars, exports)
_create_provider(current_jars, transitive_runtime_jars, jars,
exports),
DefaultInfo(files = current_jars,
),
],
)

Expand Down

0 comments on commit 6769652

Please sign in to comment.