1

I just started with Grails and I have this dependence error: I clean the project and I have install in my Ubuntu Ivy, Maven, but error persist.

Somebody have a suggestion??

: problems summary ::
:::: WARNINGS
        ::::::::::::::::::::::::::::::::::::::::::::::
        ::          UNRESOLVED DEPENDENCIES         ::
        ::::::::::::::::::::::::::::::::::::::::::::::
        :: commons-codec#commons-codec;1.6: configuration not found in commons-codec#commons-codec;1.6: 'master'. It was required from org.apache.httpcomponents#httpclient;4.2 compile
        ::::::::::::::::::::::::::::::::::::::::::::::
Burt Beckwith
  • 75,342
  • 5
  • 143
  • 156
Simpson
  • 593
  • 5
  • 20

1 Answers1

0

I find a solution guys.

I type this line as a dependency in BuildConfig.groovy and is run ok

compile: 'commons-codec:commons-codec:1.6'
chim
  • 8,407
  • 3
  • 52
  • 60
Simpson
  • 593
  • 5
  • 20
  • 6
    Add the lines around this line to provide some context. And format your answer as code. – chim Apr 17 '15 at 14:35
  • I Add the lines: dependencies { compile 'commons-codec:commons-codec:1.6' } – Simpson Apr 19 '15 at 16:55
  • Thanks Salva, do have a look at the linked duplicate and let us know if the answer provided there works for you. http://stackoverflow.com/questions/28715832/grails-unable-to-install-plugin – chim Apr 20 '15 at 10:01
  • Yeah, the answers is work for me. Thanks – Simpson Apr 20 '15 at 11:25