Skip to content

Instantly share code, notes, and snippets.

@tea-dragon
Created March 17, 2014 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tea-dragon/9604521 to your computer and use it in GitHub Desktop.
Save tea-dragon/9604521 to your computer and use it in GitHub Desktop.
an example maven exclusion on fastutil
<exclusions>
<!-- don't pull in fastutil if we are sure we won't need QDigest (eg
we aren't using TreeStatistics -->
<exclusion>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil</artifactId>
</exclusion>
</exclusions>
@tea-dragon
Copy link
Author

You will need to add this to the two places stream-lib is imported. hydra-data/pom and hydra-filters/pom. You put this in the stream-lib dependency section. See hydra-main-api/pom:39 for an example of what that looks like.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment