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
This triggers loading ALL the versions. Even an exclusion in dependencyManagement like
<dependency>
<groupId>org.opensearch.client</groupId>
<artifactId>opensearch-java</artifactId>
<version>2.4.0</version>
<!-- because the aws guys use an open range, you need to exclude this and optionally redeclare -->
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>sdk-core</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>auth</artifactId>
</exclusion>
</exclusions>
</dependency>
doesn't work
The text was updated successfully, but these errors were encountered:
Opensearch-java has one of those open ended dependencies
This triggers loading ALL the versions. Even an exclusion in dependencyManagement like
doesn't work
The text was updated successfully, but these errors were encountered: