Bruno Krebs
Bruno Krebs

Reputation: 3149

OAuth 2 & Scribe on Grails

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

Answers (1)

MKB
MKB

Reputation: 7619

Try

 grails clean-all
 grails refresh-dependencies

command as seen here.

Upvotes: 1

Related Questions