mirror of https://github.com/apache/lucene.git
LUCENE-10234: Add automatic module name to JAR manifests. (#440)
This commit is contained in:
parent
1e5e997880
commit
f5e5cf008a
|
@ -64,7 +64,9 @@ subprojects {
|
|||
"X-Compile-Target-JDK" : "${-> project.targetCompatibility}",
|
||||
|
||||
"X-Build-JDK" : "${System.properties['java.version']} (${System.properties['java.vendor']} ${System.properties['java.vm.version']})",
|
||||
"X-Build-OS" : "${System.properties['os.name']} ${System.properties['os.arch']} ${System.properties['os.version']}"
|
||||
"X-Build-OS" : "${System.properties['os.name']} ${System.properties['os.arch']} ${System.properties['os.version']}",
|
||||
|
||||
"Automatic-Module-Name" : "${-> project.path.replaceFirst(":", "").replace(':', '.').replace("-", "_")}"
|
||||
])
|
||||
}
|
||||
|
||||
|
|
|
@ -228,6 +228,8 @@ API Changes
|
|||
Improvements
|
||||
---------------------
|
||||
|
||||
* LUCENE-10234: Added Automatic-Module-Name to all JARs. (Dawid Weiss)
|
||||
|
||||
* LUCENE-10182: TestRamUsageEstimator used RamUsageTester.sizeOf throughout, making some of the
|
||||
tests trivial. Now, it compares results from RamUsageEstimator with those from RamUsageTester.
|
||||
To prevent this error in the future, RamUsageTester.sizeOf was renamed to ramUsed.
|
||||
|
|
Loading…
Reference in New Issue