Skip to content

Commit

Permalink
chore(distro): remove META-INF folder from artifacts
Browse files Browse the repository at this point in the history
* removes the `META-INF` folder from the CE distro artifacts

related to CAM-13961
  • Loading branch information
tmetzke authored Sep 24, 2021
1 parent dae8ce3 commit 293902b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions distro/run/distro/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@

<dependencySet>
<unpack>true</unpack>
<unpackOptions>
<excludes>
<exclude>**/META-INF/**</exclude>
</excludes>
</unpackOptions>
<includes>
<include>org.camunda.bpm.distro:camunda-sql-scripts:jar:*</include>
</includes>
Expand Down
5 changes: 5 additions & 0 deletions distro/tomcat/distro/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@

<dependencySet>
<unpack>true</unpack>
<unpackOptions>
<excludes>
<exclude>**/META-INF/**</exclude>
</excludes>
</unpackOptions>
<includes>
<include>org.camunda.bpm.distro:camunda-sql-scripts:jar:*</include>
</includes>
Expand Down
5 changes: 5 additions & 0 deletions distro/wildfly/distro/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
<dependencySet>
<outputDirectory />
<unpack>true</unpack>
<unpackOptions>
<excludes>
<exclude>**/META-INF/**</exclude>
</excludes>
</unpackOptions>
<includes>
<include>org.camunda.bpm.distro:camunda-sql-scripts:jar:*</include>
</includes>
Expand Down

0 comments on commit 293902b

Please sign in to comment.