diff options
author | wongma7 <wongma7@users.noreply.github.com> | 2015-08-28 16:06:38 -0400 |
---|---|---|
committer | wongma7 <wongma7@users.noreply.github.com> | 2015-08-28 16:06:38 -0400 |
commit | c6c5ffa5dde2cef785f4c66e2ec3322d542f109c (patch) | |
tree | 804ee531d8f6c83952a82102cd277d7a35561685 | |
parent | c5f0a5326e0fe8ce5fdeb0ae3d2fce6bd100453f (diff) | |
parent | 67b7ff0a7ef76a265739086c67f0892d4dac2883 (diff) |
Merge pull request #123 from betheg/httpclient_dependency
get rid of the WARNING: Dependency org.apache.httpcomponents:httpclie…
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index 9aa6e248..d2c3cf27 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -34,7 +34,9 @@ dependencies { compile 'com.android.support:cardview-v7:23.0.0' compile 'com.android.support:design:23.0.0' compile 'org.sufficientlysecure:openpgp-api:7.0' - compile 'org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r' + compile ('org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r') { + exclude group: 'org.apache.httpcomponents', module: 'httpclient' + } compile 'com.jcraft:jsch:0.1.53' compile 'org.apache.commons:commons-io:1.3.2' compile 'com.jayway.android.robotium:robotium-solo:5.3.1' |