Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Exclude certain jar files from assembled package
Browse files Browse the repository at this point in the history
  • Loading branch information
c-suh committed Nov 6, 2023
1 parent 3379055 commit 283a67a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/assembly/tar-assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
<includes>
<include>*.jar</include>
</includes>
<excludes>
<exclude>*-sources.jar</exclude>
<exclude>*-test-sources.jar</exclude>
<exclude>*-javadoc.jar</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>src/main/resources/bin</directory>
Expand Down
5 changes: 5 additions & 0 deletions src/main/assembly/zip-assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
<includes>
<include>*.jar</include>
</includes>
<excludes>
<exclude>*-sources.jar</exclude>
<exclude>*-test-sources.jar</exclude>
<exclude>*-javadoc.jar</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>src/main/resources/bin</directory>
Expand Down

0 comments on commit 283a67a

Please sign in to comment.