We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc05fef commit 9b901e9Copy full SHA for 9b901e9
build.gradle
@@ -127,18 +127,7 @@ task fatjar(type: Jar) {
127
'Implementation-Version': archiveVersion,
128
'Main-Class': 'com.ibm.northstar.CodeAnalyzer'
129
}
130
-
131
- from(configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }) {
132
- exclude 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/*.DSA'
133
- }
134
- // Use zipTree to process JAR files
135
- eachFile { details ->
136
- if (details.file.isFile() && details.name.endsWith('.jar')) {
137
- zipTree(details.file)
138
- } else {
139
- details.file
140
141
+ from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
142
with jar
143
144
0 commit comments