grails编译失败,error解析依赖关系失败



我安装了插件jasper,之后我无法编译我的项目,它在错误后弹出,我甚至无法卸载插件,所以有什么建议可以解决这个问题吗?

|Loading Grails 2.2.1
   |Configuring classpath
   :: problems summary ::
   :::: WARNINGS
        module not found: org.olap4j#olap4j;0.9.7.309-JS-3
   Error |
   Failed to resolve dependencies (Set log level to 'warn' in BuildConfig.groovy for more information):
   - org.olap4j:olap4j:0.9.7.309-JS-3

将此添加到当前时间的存储库中:

mavenRepo("https://jaspersoft.jfrog.io/jaspersoft/third-party-ce-artifacts/")

您可能需要将下面的存储库添加到构建脚本中

maven { url 'https://repository.jboss.org/nexus/content/groups/public/' } 

maven { url 'https://repository.jboss.org/nexus/content/groups/public/'}

就我而言,我可以解决这个问题。(解决依赖关系)

您需要在buildConfig.groovy文件中添加存储库

repositories {
    mavenRepo "http://dev.mapfish.org/maven/repository/"
}

最新更新