Remove exclude filtering from test-jars

Remove the filtering from test jars so Maven works in the same way
as eclipse. Test jar filtering has now been setup on the CI server
to prevent them from being published.

Fixes gh-754
pull/775/head
Phillip Webb 11 years ago
parent 62269e7a0b
commit 9942c52117

@ -156,7 +156,6 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
@ -167,13 +166,6 @@
<goals> <goals>
<goal>test-jar</goal> <goal>test-jar</goal>
</goals> </goals>
<configuration>
<excludes>
<exclude>**/*.properties</exclude>
<exclude>**/*.xml</exclude>
<exclude>**/*.yml</exclude>
</excludes>
</configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>

Loading…
Cancel
Save