Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BEAM-10961] Make plugins' transitive dependencies compileOnly dependencies. #13690

Merged
merged 9 commits into from
Jan 14, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -855,9 +855,11 @@ class BeamModulePlugin implements Plugin<Project> {
// configurations because they are never required to be shaded or become a
// dependency of the output.
def compileOnlyAnnotationDeps = [
"com.google.auto.value:auto-value-annotations:1.7",
"com.google.auto.value:auto-value-annotations:1.7.2",
sonam-vend marked this conversation as resolved.
Show resolved Hide resolved
"com.google.auto.service:auto-service-annotations:1.0-rc6",
"com.google.j2objc:j2objc-annotations:1.3",
"org.checkerframework:checker-qual:3.7.0",
sonam-vend marked this conversation as resolved.
Show resolved Hide resolved
"com.google.code.findbugs:jsr305:3.0.2",
sonam-vend marked this conversation as resolved.
Show resolved Hide resolved
// These dependencies are needed to avoid error-prone warnings on package-info.java files,
// also to include the annotations to suppress warnings.
//
Expand Down