summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Gagné <fragag1@gmail.com>2015-02-24 02:41:51 -0500
committerFrancis Gagné <fragag1@gmail.com>2015-02-24 02:41:51 -0500
commit9897cf3a6b633af77e3f355978f0479a59c4dcdf (patch)
treefe29c8a00182a51778dd1d3be341db6a9fc21618
parent0fc13dcea43312ef47fe63c4d4213269d8aeafcd (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.xml7
1 files changed, 0 insertions, 7 deletions
diff --git a/pom.xml b/pom.xml
index e3ae278..a3deb7a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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). -->