Skip to content

Commit 0e088c4

Browse files
o Updated to support signature files ending in '.EC' or '.ec'.
This closes #46
1 parent 202a014 commit 0e088c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/org/codehaus/plexus/archiver/filters/JarSecurityFileSelector.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ public class JarSecurityFileSelector
3434
"META-INF/*.RSA",
3535
"META-INF/*.DSA",
3636
"META-INF/*.SF",
37+
"META-INF/*.EC",
3738
"META-INF/*.rsa",
3839
"META-INF/*.dsa",
39-
"META-INF/*.sf" };
40+
"META-INF/*.sf",
41+
"META-INF/*.ec" };
4042

4143
public boolean isSelected( @Nonnull FileInfo fileInfo )
4244
throws IOException

0 commit comments

Comments
 (0)