Skip to content

Commit

Permalink
filter out signature files from bc dependency (#14)
Browse files Browse the repository at this point in the history
- if these are not filtered, the built jar of cbioportal-core appears to be a signed jar with invalid/incomplete signatures

Co-authored-by: Manda Wilson <1458628+mandawilson@users.noreply.github.com>
  • Loading branch information
sheridancbio and mandawilson authored Mar 6, 2024
1 parent 189eda6 commit e0886b1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<id>assembly</id>
Expand All @@ -230,6 +231,16 @@
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
Expand Down

0 comments on commit e0886b1

Please sign in to comment.