mirror of
https://github.com/apache/lucene.git
synced 2025-02-06 01:58:44 +00:00
- Make FacetTestCase abstract so that the IntelliJ test runner doesn't try to execute its tests under the facet module test run configuration - In the facet module configuration, drop source directory facet/src/examples/ and add source directory facet/src/resources/ - Add -Xmx256m to the Lucene core test run configuration to avoid OOM in a couple tests - Add resource pattern 'test-files:*' to .idea/compiler.xml, so that all files under */src/test-files/, regardless of file name/extension, will be copied over to the test output directory (previously .js files under solr/src/test-files/ were being excluded) git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1447154 13f79535-47bb-0310-9956-ffa450edef68
14 lines
417 B
XML
14 lines
417 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project version="4">
|
|
<component name="CompilerConfiguration">
|
|
<wildcardResourcePatterns>
|
|
<entry name="!*.(cpp|java|jflex|jflex-macro|jj|js|pl|py)"/>
|
|
<entry name="test-files:*"/>
|
|
</wildcardResourcePatterns>
|
|
</component>
|
|
<component name="JavacSettings">
|
|
<option name="ADDITIONAL_OPTIONS_STRING" value="-encoding utf-8" />
|
|
</component>
|
|
</project>
|
|
|