Exclude Lucene's own JAR files from classpath entries in Eclipse config (#976)

This commit is contained in:
Uwe Schindler 2022-06-24 19:42:42 +02:00 committed by GitHub
parent 9199d48e7e
commit eafc6420f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -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())
}
}

View File

@ -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