如何在为grails 2.4.4版本添加jasper:1.11.0插件时解决Itext问题

时间:2015-10-08 10:10:53

标签: grails jasper-reports grails-plugin ggts grails-2.4

我正在尝试将grails项目从grails版本1.3.7迁移到2.4.4。我需要添加Jasper Plugin jasper:1.11.0。我已经使用了Jasper:版本1.3.7的1.5.3插件,它的工作正常。

问题是在配置文件夹下的BuildConfig.groovy中为版本2.4.4添加jasper:1.11.0插件然后我给了grails->刷新依赖项命令。 它开始下载所需的插件并尝试安装它。在安装过程中它显示以下错误

**

错误|解决错误获取依赖项:无法读取com.lowagie的工件描述符:itext:jar:2.1.7.js2(使用--stacktrace查看完整跟踪)

**

Console showing error while adding plugins

Console showing error while adding plugins

我在使用命令提示符时遇到的问题。 我的配置

GGTS:3.6.4.RELEASE

Groovy-Comipler:2.3.10

Grails:2.4.4

Jdk:1.7.0_75

我正在使用buildconfig.groovy文件的存储库是

repositories 
{       
 inherits true    
        grailsPlugins()    
        grailsHome()    
        mavenLocal()    
        grailsCentral()    
        mavenCentral()

       mavenRepo "http://repo.grails.org/grails/core"    
        mavenRepo "http://repo.grails.org/grails/plugins"           
    }

1 个答案:

答案 0 :(得分:1)

尝试添加额外的mavenRepo。

我遇到互联网限制问题,因此无法找到您应该添加的必要回购。

试试这些:

mavenRepo  "http://repo.spring.io/release" 
mavenRepo  "http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts/" 
mavenRepo  "http://jasperreports.sourceforge.net/maven2/"