mirror of https://github.com/apache/lucene.git
Exclude Lucene's own JAR files from classpath entries in Eclipse config (#976)
This commit is contained in:
parent
9199d48e7e
commit
eafc6420f3
|
@ -63,7 +63,7 @@ configure(rootProject) {
|
|||
sourceFolder.setExcludes(["module-info.java"])
|
||||
return sourceFolder
|
||||
}
|
||||
classpath.entries += jars.unique().findAll { location -> location.isFile() }.collect { location ->
|
||||
classpath.entries += jars.unique().findAll { location -> location.isFile() && !(location.name ==~ /lucene-.*\.jar/) }.collect { location ->
|
||||
new LibEntry(location.toString())
|
||||
}
|
||||
}
|
||||
|
|
|
@ -136,6 +136,12 @@ Other
|
|||
|
||||
* GITHUB#922: Remove unused and confusing FacetField indexing options (Gautam Worah)
|
||||
|
||||
Build
|
||||
---------------------
|
||||
|
||||
* GITHUB#976: Exclude Lucene's own JAR files from classpath entries in Eclipse config.
|
||||
(Uwe Schindler)
|
||||
|
||||
======================= Lucene 9.2.0 =======================
|
||||
|
||||
API Changes
|
||||
|
|
Loading…
Reference in New Issue