classmethod / gradle-aws-plugin

Gradle plugin to manage Amazon Web Services
276 stars 131 forks source link

plugin incompatible with android gradle plugin 3.2.1 #164

Open wizofaus opened 5 years ago

wizofaus commented 5 years ago

If you have a gradle multi-project that includes both the android plugin 3.2.1 and the latest aws plugin, there is a incompatibility with the versions of guava, and the commons-logging library. To fix it you can this to the buildscript section:

configurations.all {
  resolutionStrategy {
    force "com.google.guava:guava:23.0"
    force "commons-logging:commons-logging:1.2"
    force "commons-io:commons-io:2.4"
  }
}

But it might be better to ensure the aws plugin uses more up-to-date versions of these libraries.