Created
May 30, 2024 18:36
-
-
Save HSGamer/514c166e6a1b9d6659969a40b675bc0a to your computer and use it in GitHub Desktop.
Maven Shade Filter to only keep necessary files in cron-utils
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<filters> | |
<filter> | |
<artifact>com.cronutils:cron-utils</artifact> | |
<excludes> | |
<exclude>com/cronutils/descriptor/**</exclude> | |
<exclude>com/cronutils/validation/**</exclude> | |
<exclude>com/cronutils/converter/**</exclude> | |
<exclude>com/cronutils/CronUtilsI18N**</exclude> | |
</excludes> | |
</filter> | |
</filters> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment