Skip to content

Commit 9b901e9

Browse files
committed
Do not exclude signature related patterns
Signed-off-by: Rahul Krishna <[email protected]>
1 parent bc05fef commit 9b901e9

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

build.gradle

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -127,18 +127,7 @@ task fatjar(type: Jar) {
127127
'Implementation-Version': archiveVersion,
128128
'Main-Class': 'com.ibm.northstar.CodeAnalyzer'
129129
}
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-
}
130+
from { configurations.compileClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
142131
with jar
143132
}
144133

0 commit comments

Comments
 (0)