We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02f5dc3 commit 2503e83Copy full SHA for 2503e83
gradle/java/core-mrjar.gradle
@@ -40,6 +40,8 @@ configure(project(":lucene:core")) {
40
// for compilation we patch the incubator packages into java.base, this has no effect on resulting class files:
41
"--add-exports", "java.base/jdk.incubator.vector=ALL-UNNAMED",
42
]
43
+ // hack because -Xlint:-options does not work for all options (regression in JDK 25+):
44
+ options.compilerArgs.remove("-Werror")
45
46
def argsProvider = objects.newInstance(CompilerArgsProvider)
47
argsProvider.apiJarFile.set(apijar)
0 commit comments