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'
}
あなたはこのようなものを試すことができます。あなたのbuild.gradle
JAR
定義の下にexcludeを追加します。例:
jar {
exclude('your thing')
}