mirror of https://github.com/apache/lucene.git
Mapped java.io.tmpdir to the same value as tempDir.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@488004 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f1467191f1
commit
0d8f7b704a
12
CHANGES.txt
12
CHANGES.txt
|
@ -25,10 +25,10 @@ Changes in runtime behavior
|
|||
4. LUCENE-489: Add support for leading wildcard characters (*, ?) to
|
||||
QueryParser. Default is to disallow them, as before.
|
||||
(Steven Parkes via Otis Gospodnetic)
|
||||
|
||||
5. LUCENE-703: QueryParser changed to default to use of ConstantScoreRangeQuery
|
||||
for range queries. Added useOldRangeQuery property to QueryParser to allow
|
||||
selection of old RangeQuery class if required.
|
||||
|
||||
5. LUCENE-703: QueryParser changed to default to use of ConstantScoreRangeQuery
|
||||
for range queries. Added useOldRangeQuery property to QueryParser to allow
|
||||
selection of old RangeQuery class if required.
|
||||
(Mark Harwood)
|
||||
|
||||
6. LUCENE-543: WildcardQuery now performs a TermQuery if the provided term
|
||||
|
@ -337,12 +337,14 @@ Documentation
|
|||
|
||||
6. LUCENE-713 Updated the Term Vector section of File Formats to include documentation on how Offset and Position info are stored in the TVF file. (Grant Ingersoll, Samir Abdou)
|
||||
|
||||
7. Added in link to Clover Test Code Coverage Reports under the Develop section in Resources (Grant Ingersoll)
|
||||
7. Added in link to Clover Test Code Coverage Reports under the Develop section in Resources (Grant Ingersoll)
|
||||
|
||||
Build
|
||||
|
||||
1. Added in clover test code coverage per http://issues.apache.org/jira/browse/LUCENE-721 To enable clover code coverage, you must have clover.jar in the ANT classpath and specify -Drun.clover=true on the command line.(Michael Busch and Grant Ingersoll)
|
||||
|
||||
2. Added a sysproperty in common-build.xml per Lucene 752 to map java.io.tmpdir to ${build.dir}/test just like the tempDir sysproperty.
|
||||
|
||||
Release 2.0.0 2006-05-26
|
||||
|
||||
API Changes
|
||||
|
|
|
@ -188,6 +188,7 @@
|
|||
<!-- TODO: create propertyset for test properties, so each project can have its own set -->
|
||||
<sysproperty key="dataDir" file="src/test"/>
|
||||
<sysproperty key="tempDir" file="${build.dir}/test"/>
|
||||
<sysproperty key="java.io.tmpdir" file="${build.dir}/test"/>
|
||||
|
||||
<!-- contrib/ant IndexTaskTest needs these two system properties -->
|
||||
<sysproperty key="docs.dir" file="src/test"/>
|
||||
|
|
Loading…
Reference in New Issue