Skip to content

Instantly share code, notes, and snippets.

@HSGamer
Created May 30, 2024 18:36
Show Gist options
  • Save HSGamer/514c166e6a1b9d6659969a40b675bc0a to your computer and use it in GitHub Desktop.
Save HSGamer/514c166e6a1b9d6659969a40b675bc0a to your computer and use it in GitHub Desktop.
Maven Shade Filter to only keep necessary files in cron-utils
<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