Ancy
Ancy

Reputation: 1

Grails application holder error

I am working in grails 2.4.0 and installed excel-import 1.0.0 plugin to the project. While compiling the project it is generating an error that could not resolve the class Application Holder. Please help.

Upvotes: 0

Views: 320

Answers (2)

s3c3t3
s3c3t3

Reputation: 363

I was having the same problem. You can get the version 1.0.1 of the plugin here https://github.com/jbarmash/grails-excel-import

Or if you prefer, add this url to the repositories section in BuildConfig.groovy

mavenRepo "http://maven.ala.org.au/repository/"

I found that this repository has the latest version of the plugin (at least it compiles with grails 2.4.4, real tests are yet to be made)

Then add this two entries to the plugins section

compile ":excel-import:1.0.1"
compile ":joda-time:1.5"

Upvotes: 2

Joshua Moore
Joshua Moore

Reputation: 24776

Upgrade your plugin to the latest 1.0.1 version. It was made 2.4.x compatible.

Upvotes: 1

Related Questions