Skip to content

Instantly share code, notes, and snippets.

View tea-dragon's full-sized avatar

Ian Barfield tea-dragon

  • Falls Church, Virginia
View GitHub Profile
@tea-dragon
tea-dragon / exclude_fastutil
Created March 17, 2014 17:47
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>