1

我有一个带有单个模块的多模块 gradle 构建,该模块包含一个使用其他模块的工件的 spring boot 应用程序。我将弹簧引导插件应用于单个弹簧引导模块。

一切都在 Windows 中正常工作,但是一旦我尝试在 Linux 机器上构建,如果失败。我尝试了多台 linux 机器(Jenkins 服务器、Ubuntu VM,甚至 bitbucket 管道),但失败并出现以下错误:

Problems reading data from Binary store in /tmp/gradle2075404181876889604.bin (exist: false)

我不完全确定 gradle 使用这个二进制存储的目的是什么,但在调试后我发现这个文件名与其他所有模块在构建时使用的二进制存储不同。

我已经尝试了多个 gradle 版本(2、3 和 4)和几个 spring boot 版本,但它们都失败并出现相同的错误。唯一解决此问题的是删除 spring boot 插件。

这是父 build.gradle

    repositories {
        mavenCentral()
    }

    def javaLangVersion = '1.8'
    def gradleDir = "${rootProject.rootDir}/gradle"
    def realProjects = allprojects - [project(':external'), project(':delivery')]
    def javaProjects = realProjects - rootProject
    def integrationTestProjects = javaProjects

    configure(realProjects) {
        group 'com.packagename'
        version '1.0-SNAPSHOT'

        apply plugin: 'eclipse'
        apply plugin: 'idea'
    }

    configure(javaProjects) {
        apply plugin: 'java'

        targetCompatibility = javaLangVersion
        sourceCompatibility = javaLangVersion

        repositories {
            mavenCentral()
        }

        dependencies {
            compile group: 'org.slf4j', name: 'slf4j-api', version: "${slf4jVersion}"
            compile group: 'org.slf4j', name: 'log4j-over-slf4j', version: "${slf4jVersion}"

            testCompile group: 'junit', name: 'junit', version: "${junitVersion}"
            testCompile group: 'org.mockito', name: 'mockito-core', version: "${mockitoVersion}"
            testCompile group: 'nl.jqno.equalsverifier', name: 'equalsverifier', version: "${equalsverifierVersion}"
        }
    }

    configure(integrationTestProjects) {
        apply from: "${gradleDir}/integrationTest.gradle"
    }

    task wrapper(type: Wrapper) {
        gradleVersion = '3.5'
    }

这是 Spring Boot 模块 build.gradle 文件:

buildscript {
    ext {
        springBootVersion = '1.5.3.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootStarterVersion}")
    }
}

apply plugin: 'org.springframework.boot'
apply plugin: 'war'

war {
    baseName = "${project.name}"
    version = "${project.version}"
}

dependencies {
    compile project(':module1')
    compile project(':module2')

    compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-rest'

    compile group: 'org.apache.httpcomponents', name: 'httpcore', version: "${httpCoreVersion}"
    compile group: 'org.apache.httpcomponents', name: 'httpclient', version: "${httpClientVersion}"

    compile group: 'com.h2database', name: 'h2', version: "${h2Version}"

    testCompile project(':test-utils')
    testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test'
}

所有其他模块都是纯 java 模块,并且只在构建文件中声明一个依赖项块。

我已经为此工作了 2 天,因此非常感谢任何帮助或建议。谢谢!

4

2 回答 2

1

好吧,这太尴尬了...我使用 FileUtils.getTempDirectory() 进行了单元测试,然后在测试后使用 FileUtils.deleteQuietly 清理该目录,它正在删除 /tmp 文件夹中的 gradle 二进制存储。它没有在 Windows 上显示的原因是因为 Windows 锁定了文件。

于 2017-09-15T17:19:25.023 回答
0

你确认你的gradle.properties 在 Linux 机器上没问题吗?

于 2017-09-15T16:45:30.053 回答