Gradle -将文件从jar打包中删除

8ehkhllq  于 2023-10-19  发布在  其他
关注(0)|答案(1)|浏览(206)

我想从构建的jar中排除AMAuthN.properties。这个文件一直显示在编译后的jar文件的根文件夹中。该文件位于相对于项目文件夹根目录的AMAuthN\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'
}
58wvjzkj

58wvjzkj1#

你可以试试这个,我知道这对我很有效.在你的build.gradle下的JAR定义中添加你的exclude。例如:

jar {     
   exclude('your thing')     
}

相关问题