[
https://issues.apache.org/jira/browse/BEAM-4107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17547094#comment-17547094
]
Kenneth Knowles commented on BEAM-4107:
---------------------------------------
This issue has been migrated to https://github.com/apache/beam/issues/18881
> Do not force our fixed dependency versions on all configurations, but only
> those we know about
> ----------------------------------------------------------------------------------------------
>
> Key: BEAM-4107
> URL: https://issues.apache.org/jira/browse/BEAM-4107
> Project: Beam
> Issue Type: Improvement
> Components: build-system
> Reporter: Kenneth Knowles
> Priority: P3
> Labels: gradle
>
> One example is the errorprone plugin has its own configuration which has
> nothing to do with our code. To use a different version of guava we do:
> {code}
> apply plugin: 'net.ltgt.errorprone'
> dependencies {
> errorprone 'com.google.guava:guava:22.0'
> errorprone 'com.google.errorprone:error_prone_core:2.2.0'
> }
> {code}
> But our build_rules.gradle has a bug that makes this not work, because we do:
> {code}
> configurations.all {
> resolutionStrategy {
> force library.java.values()
> }
> }
> {code}
> Instead of this "big hammer" approach, we should figure out a correct way to
> configure things. Possibly this should just be a list of a few Java
> configurations.
--
This message was sent by Atlassian Jira
(v8.20.7#820007)