So.. the benefit is that in BUILD files you have: ...
# general
j
So.. the benefit is that in BUILD files you have:
Copy code
java_library(name=‘…’,
  dependencies=[
    ‘3rdparty:foobar-scoped-to-provided’,
  ],
)
instead of:
Copy code
java_library(name=‘…’,
  scoped_dependencies=[
    scoped(‘provided’, ‘3rdparty:foobar’),
  ],
)
in all your hadoop-related targets?