Skip to content

Instantly share code, notes, and snippets.

@HSGamer
Created November 22, 2025 18:01
Show Gist options
  • Select an option

  • Save HSGamer/7f4a0dddf124f2655c8a2886816ad945 to your computer and use it in GitHub Desktop.

Select an option

Save HSGamer/7f4a0dddf124f2655c8a2886816ad945 to your computer and use it in GitHub Desktop.
Filter for Maven Shade Plugin to remove unused 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