gradle构建失败,出现异常

时间:2019-04-22 21:00:27

标签: gradle build.gradle maven-central

enter image description here

apply plugin: 'java'

group 'com.CustomWIH'
version '1.0-SNAPSHOT'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}


dependencies {
    compile 'org.jbpm:jbpm-kie-services:7.20.0.Final'
}

task fatJar(type: Jar) {
    baseName='jbpmTutorial'
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
    with jar
}

jbpm依赖项具有的依赖项在maven存储库中不再可用

org.freemarker版本2.3.26 https://mvnrepository.com/artifact/org.freemarker/freemarker

C:\ Users \ kona \ IdeaProjects \ com-CustomWIH> gradle fatJar --stacktrace

失败:构建失败,并出现异常。

我以前从未遇到过这个问题。在这种情况下我该怎么办?

1 个答案:

答案 0 :(得分:3)

您的依存关系树包含以下传递依存关系:org.freemarker:freemarker:2.3.26.jbossorg-1,在Maven Central中找不到。 它在Maven Central中不存在的原因是,它不是freemarker的普通版本,而是JBoss修补版本,可以从依赖项2.3.26.jbossorg-1的版本中看出。

Google搜索org.freemarker:freemarker:2.3.26.jbossorg-1带我去了这个Maven存储库:https://repository.jboss.org/nexus/content/groups/public/

解决方案是像这样将Maven存储库添加到build.gradle中:

repositories {
    mavenCentral()
    maven {
        url "https://repository.jboss.org/nexus/content/groups/public/"
        // OR this one, as suggested by jb-nizet
        // url "https://maven.repository.redhat.com/ga/"
    }
}