M
M
mitaichik2015-04-24 18:58:34
Java
mitaichik, 2015-04-24 18:58:34

How to resolve gradle dependency conflict?

Hello everyone, I'm a complete noob in Java, and I don't know English)) Please help me resolve the gradle dependency conflict :)
As I understand it, due to the fact that one library uses slf4j 1.5, the other uses 1.6, while gradle uses 1.6 which doesn't have some method.
Everything seems to be clear, but what to do with it - I don’t understand the second hour:
On the screen - a dependency tree
0978d221e9da483e967ee25cad26fe38.png
AND an exception
957fae7a043341feb7b6f1641f2ec087.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vladimir Abramov, 2015-04-24
@mitaichik

https://gradle.org/docs/current/userguide/dependen...
51.4.7. Excluding transitive dependencies
A piece from my project:

compile('com.octo.android.robospice:robospice-google-http-client:1.4.14') {
        exclude(group: 'org.apache.httpcomponents', module: 'httpclient')
        exclude group: 'org.apache.commons', module: 'commons-io'
    }

K
Kirill Olenev, 2015-04-24
@agent10

Similar case?
stackoverflow.com/questions/28056237/gradles-confl...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question