Maven config: exclude .java files under test resource directory solr/core/src/test-files/ - Maven was attempting to compile runtimecode/RuntimeLibSearchComponent.java under the test module (solr/core/src/test/pom.xml)

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1683201 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2015-06-03 00:26:27 +00:00
parent 3424a7a0a7
commit dad3395af3
1 changed files with 3 additions and 0 deletions

View File

@ -65,6 +65,9 @@
<testResources>
<testResource>
<directory>${module-path}/../test-files</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
<testResource>
<directory>${project.build.testSourceDirectory}</directory>