Gradle - 从与 jar 一起打包的文件中排除文件

2022-09-01 19:05:07

我想从构建的罐子中排除。此文件不断显示在已编译 jar 的根文件夹中。该文件相对于项目文件夹根目录位于相对的位置。谢谢!AMAuthN.propertiesAMAuthN\src\main\resources\AMAuthN.properties

apply plugin: 'java'
apply plugin: 'eclipse'

version = '1.0'
sourceCompatibility = 1.6
targetCompatibility = 1.6

test {
    testLogging {
        showStandardStreams = true
    }
}

// Create a single Jar with all dependencies
jar {
    manifest {
        attributes 'Implementation-Title': 'Gradle Jar File Example',  
            'Implementation-Version': version,
            'Main-Class': 'com.axa.openam'
    }

    baseName = project.name

    from {
        configurations.compile.collect {
            it.isDirectory() ? it : zipTree(it) 
        }
    }
}

// Get dependencies from Maven central repository
repositories {
    mavenCentral()
}

// Project dependencies
dependencies {
    compile 'com.google.code.gson:gson:2.5'
    testCompile 'junit:junit:4.12'
}

答案 1

你可以尝试这样的东西,我知道这对我有用。在定义下添加排除项。前任:build.gradleJAR

jar {     
   exclude('your thing')     
}

答案 2

推荐