diff options
author | Francis Gagné <fragag1@gmail.com> | 2015-02-24 02:41:51 -0500 |
---|---|---|
committer | Francis Gagné <fragag1@gmail.com> | 2015-02-24 02:41:51 -0500 |
commit | 9897cf3a6b633af77e3f355978f0479a59c4dcdf (patch) | |
tree | fe29c8a00182a51778dd1d3be341db6a9fc21618 | |
parent | 0fc13dcea43312ef47fe63c4d4213269d8aeafcd (diff) |
Remove excludes from Shade configuration
I added these excludes before I realized that reasm-commons defined the
dependencies on JUnit and Hamcrest incorrectly (the scope=test attribute
was missing). With the correct dependencies, these excludes are
superfluous, because JUnit and Hamcrest are not included in the JAR at
all.
-rw-r--r-- | pom.xml | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -41,13 +41,6 @@ <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <configuration> - <artifactSet> - <excludes> - <exclude>junit:*</exclude> - <exclude>org.hamcrest:*</exclude> - </excludes> - </artifactSet> - <!-- minimizeJar doesn't work too well for us, --> <!-- because the language-specific assemblers are not referenced statically --> <!-- (they're loaded with ServiceLoader). --> |