web-dev-qa-db-ja.com

Gradle-jarでパッケージ化されるファイルを除外する

excludeAMAuthN.propertiesビルドしたjarからしたい。このファイルは、コンパイル済みの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'
}
17
Wes

あなたはこのようなものを試すことができます。あなたのbuild.gradleJAR定義の下にexcludeを追加します。例:

jar {     
   exclude('your thing')     
}
21
SomeStudent