Reputation: 1
I am trying to migrate a grails project from grails version 1.3.7 to 2.4.4.In that I need to add Jasper Plugin jasper:1.11.0.I already used Jasper:1.5.3 plugin for version 1.3.7,its working fine.
The problem is while adding jasper:1.11.0 plugin for version 2.4.4 in BuildConfig.groovy under configuration folder then I gave grails-> refresh dependencies command. Its start downloading the required plugin and try to install it .During installation it showing the below error
**
**
Console showing error while adding plugins
Console showing error while adding plugins
The same issue i am facing while doing in via Command Prompt. My Configuration are
GGTS : 3.6.4.RELEASE
Groovy-Comipler : 2.3.10
Grails : 2.4.4
Jdk : 1.7.0_75
Repositories i am using buildconfig.groovy file is
repositories
{
inherits true
grailsPlugins()
grailsHome()
mavenLocal()
grailsCentral()
mavenCentral()
mavenRepo "http://repo.grails.org/grails/core"
mavenRepo "http://repo.grails.org/grails/plugins"
}
Upvotes: 0
Views: 613
Reputation: 897
Try adding additional mavenRepo.
I am having internet restriction issues so I can't find the necessary repo you should add.
Try these:
mavenRepo "http://repo.spring.io/release"
mavenRepo "http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts/"
mavenRepo "http://jasperreports.sourceforge.net/maven2/"
Upvotes: 1