You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but as the opensearch java clients don't have module-info.java files it's defaulting to try and do the modularity based on the classes in the file. This would potentially be okay if it wasn't for the fact that the org.opensearch.client package is available in two places.
module myapp reads package org.opensearch.client from both opensearch.rest.high.level.client and opensearch.rest.client
This is probably something that can be solved by properly supporting the module system.
The text was updated successfully, but these errors were encountered:
thanks for linking the existing ticket. The split packages problem will certainly need to be solved. I also noticed that the high level client pulls in a lot of transient dependencies that probably aren't needed.
I'm currently trying to build a modular jar of my app that depends on:
but as the opensearch java clients don't have module-info.java files it's defaulting to try and do the modularity based on the classes in the file. This would potentially be okay if it wasn't for the fact that the org.opensearch.client package is available in two places.
This is probably something that can be solved by properly supporting the module system.
The text was updated successfully, but these errors were encountered: