Suppressing "automatic module" warning for benchmark-jmh (#13997)

via Viswanath Kuchibhotla
This commit is contained in:
Viswanath Kuchibhotla 2024-11-17 18:11:27 +05:30 committed by GitHub
parent 300862bd20
commit a0e1eeefeb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,9 @@
*/
/** Lucene JMH benchmarks. */
// jmh.core is not modularized and causes a warning. Suppressing it until it is modularized.
@SuppressWarnings("requires-automatic")
module org.apache.lucene.benchmark.jmh {
requires jmh.core;
requires jdk.unsupported;