Gradle Eclipse类路径异常:失败:生成失败,出现异常

Gradle Eclipse类路径异常:失败:生成失败,出现异常,gradle,gradle-eclipse,Gradle,Gradle Eclipse,每当我试图运行gradleeclipse时,我都会得到上图中所附的错误。 我一直得到这个日食路径异常 我使用的Gradle版本是3.1 有人建议我使用gradle版本2.14,因为它不能与最新版本的gradle一起使用 我的build.gradle文件如下: 我通过广泛的搜索找到了答案 看起来问题出在gradle中使用的Spring启动版本上。 对于Gradle版本3.1,建议的spring引导版本是1.4.x版本。 如果我要使用SpringBootVersion1.2.3,我应该使用的grad

每当我试图运行gradleeclipse时,我都会得到上图中所附的错误。 我一直得到这个日食路径异常

我使用的Gradle版本是3.1 有人建议我使用gradle版本2.14,因为它不能与最新版本的gradle一起使用

我的build.gradle文件如下:


我通过广泛的搜索找到了答案

看起来问题出在gradle中使用的Spring启动版本上。 对于Gradle版本3.1,建议的spring引导版本是1.4.x版本。 如果我要使用SpringBootVersion1.2.3,我应该使用的gradle版本是2.14。 刚更改了spring启动版本,构建就成功了

有关更多答案,请参阅本页

buildscript {
    ext {
        springBootVersion = '1.2.3.RELEASE'
        springCloudConnectorsVersion = '1.2.3.RELEASE'
        jarName =  'comOrderAudit'
        jarVersion = ' -jar build/libs/app-0.0.1-SNAPSHOT.jar'
    }

    repositories {
        mavenCentral()
        mavenLocal()
        jcenter()
    }

    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
        classpath("io.spring.gradle:dependency-management-plugin:0.5.0.RELEASE")
    }   
}

repositories {
    mavenCentral()
    mavenLocal()
    jcenter()
}

apply plugin: 'spring-boot'
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'eclipse'
apply plugin: 'war'
apply plugin: 'jacoco'

dependencies {
    compile("org.springframework.boot:spring-boot-starter-actuator") {
        exclude module: "spring-boot-starter-logging"
        exclude module: "logback-classic"
    }
    compile "org.springframework.boot:spring-boot-starter-test"
    compile("org.springframework.boot:spring-boot-starter-web") {
        exclude module: "spring-boot-starter-logging"
        exclude module: "logback-classic"
    }
    compile("org.springframework.boot:spring-boot-starter-aop") {
        exclude module: "spring-boot-starter-logging"
        exclude module: "logback-classic"
    }

    "org.springframework.cloud:Spring-cloud-core:${springCloudConnectorsVersion}" 
    compile "org.springframework.cloud:spring-cloud-spring-service-connector:${springCloudConnectorsVersion}" 
    compile "org.springframework.cloud:spring-cloud-cloudfoundry-connector:${springCloudConnectorsVersion}" 
    compile 'org.codehaus.jettison:jettison:1.3.8'

    compile 'com.datastax.cassandra:cassandra-driver-core:2.1.8' 
    compile 'com.google.code.gson:gson:2.3.1'

    compile 'org.springframework.boot:spring-boot-starter-log4j2'
    compile 'org.springframework:spring-oxm'
    compile 'org.simpleframework:simple-xml:2.7.1'
    compile 'io.springfox:springfox-swagger2:2.0.0'
    compile 'io.springfox:springfox-swagger-ui:2.0.0'
    compile 'com.wordnik:swagger-jersey2-jaxrs_2.10:1.3.8'
    compile 'com.mangofactory:swagger-springmvc:1.0.2'
    compile 'com.datastax.cassandra:cassandra-driver-core:2.1.8'    
    compile  'com.google.code.gson:gson:2.3.1'
    testCompile "junit:junit:4.12"
    testCompile "org.springframework.boot:spring-boot-starter-test"
    testCompile 'commons-dbcp:commons-dbcp:1.4'

}

task updateVersion{
    Properties props = new Properties()
    File propsFile = new File("src/main/resources/application.properties")
    props.load(propsFile.newDataInputStream())
    println(props.getProperty("buildNumber")+"v")
    Integer nextbuildnum = (((props.getProperty("buildNumber")) as Integer) + 1)
    props.setProperty('buildNumber', nextbuildnum.toString())
    def date = new Date()
    def formattedDate = date.format('yyyyMMddHHmmss')
    props.setProperty("buildTimeStamp", formattedDate)
    props.store(propsFile.newWriter(), null)
    props.load(propsFile.newDataInputStream())
}

test {
    testLogging {
        events 'started', 'passed'
    }
    jacocoTestReport{
        group = "Reporting"
        description = "Generate Jacoco coverage reports."
        additionalSourceDirs = files(sourceSets.main.java)
        reports {
            xml.enabled = false
            html.enabled = true
        }

        afterEvaluate {
            classDirectories = files(classDirectories.files.collect {
                fileTree(dir: it,
                        exclude: ['**/model/**'])
            })
        }
    }   
}