Last active
August 29, 2015 14:17
-
-
Save sakama/a4da093b3769e72f1df9 to your computer and use it in GitHub Desktop.
embulk-input-gcsのbuild.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
compile "com.google.http-client:google-http-client-jackson2:1.19.0" | |
//以下の記述だとConfigDefault("null")を指定できない | |
compile "com.google.apis:google-api-services-storage:v1-rev27-1.19.1" | |
//以下に変更 | |
compile ("com.google.apis:google-api-services-storage:v1-rev27-1.19.1") {exclude module: "guava-jdk5"} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment