Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

endpoints-spi is missing in bom #5116

Closed
laymain opened this issue Apr 18, 2024 · 2 comments · Fixed by #5135
Closed

endpoints-spi is missing in bom #5116

laymain opened this issue Apr 18, 2024 · 2 comments · Fixed by #5135
Labels
bug This issue is a bug. p2 This is a standard priority issue

Comments

@laymain
Copy link

laymain commented Apr 18, 2024

Describe the bug

Hi,

It seems that endpoints-spi artifact is missing in bom which could lead to version conflict issues.

Expected Behavior

Having endpoints-spi in bom

Current Behavior

Missing endpoints-spi in bom

Reproduction Steps

Import bom

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>software.amazon.awssdk</groupId>
      <artifactId>bom</artifactId>
      <version>${aws.version}</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

Possible Solution

Workaround:

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>software.amazon.awssdk</groupId>
      <artifactId>bom</artifactId>
      <version>${aws.version}</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
    <dependency>
       <groupId>software.amazon.awssdk</groupId>
       <artifactId>endpoints-spi</artifactId>
       <version>${aws.version}</version>
    </dependency>
  </dependencies>
</dependencyManagement>

Additional Information/Context

No response

AWS Java SDK version used

2.25.33

JDK version used

not relevant

Operating System and version

not relevant

@laymain laymain added bug This issue is a bug. needs-triage This issue or PR still needs to be triaged. labels Apr 18, 2024
@debora-ito
Copy link
Member

@laymain acknowledged. Marking as a bug.

@debora-ito debora-ito added p2 This is a standard priority issue and removed needs-triage This issue or PR still needs to be triaged. labels Apr 18, 2024
Copy link

This issue is now closed. Comments on closed issues are hard for our team to see.
If you need more assistance, please open a new issue that references this one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug This issue is a bug. p2 This is a standard priority issue
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants