Reputation: 3149
I have added oauth plugin as a dependency on my project like this:
plugins {
...
compile ":oauth:2.1.0"
...
}
But somehow this does not add scribe dependency to my project and therefore I'm not able to import org.scribe.whatever.
Just as a test I have also added
dependencies {
...
runtime 'org.scribe:scribe:1.3.2'
...
}
in order to check if then it would work, but no lucky at all. No jar from scribe is added as a depedency to my project. Any idea on why is this happening?
Upvotes: 0
Views: 173