SEARCH-247: Excluding log4j jar from libs.

We want to use the log4j.jar from the jetty server, not our own.
This commit is contained in:
Gethin James
2016-11-28 10:17:46 +01:00
parent 729b367e3e
commit f6bfe7d6f3
+2
View File
@@ -203,6 +203,7 @@
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}/libs</outputDirectory>
<includeScope>compile</includeScope>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
@@ -236,6 +237,7 @@
<exclude>org/**/*</exclude>
<exclude>**/jetty-*.jar</exclude>
<exclude>**/slf4j*.jar</exclude>
<exclude>**/log4j*.jar</exclude>
<exclude>**/junit*.jar</exclude>
<exclude>**/mock*.jar</exclude>
<exclude>**/opencmis*.jar</exclude>