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

kotlin-stdlib version conflicts downstream #274

Open
andykruth-ii opened this issue Feb 25, 2021 · 0 comments
Open

kotlin-stdlib version conflicts downstream #274

andykruth-ii opened this issue Feb 25, 2021 · 0 comments

Comments

@andykruth-ii
Copy link
Contributor

Including some dependencies downstream cause a 1.2.X version of kotlin-stdlib and a 1.3.X version of kotlin-stdlib-common to be pulled in which causes version clash issues at runtime (NoSuchMethodError's).

Ex.

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-dependencies</artifactId>
            <version>2.1.1.RELEASE</version>
            <scope>import</scope>
            <type>pom</type>
        </dependency>
        <dependency>
            <groupId>com.expediagroup.streamplatform</groupId>
            <artifactId>stream-registry-state-graphql-sender</artifactId>
            <version>0.16.0</version>
        </dependency>
    </dependencies>
</dependencyManagement>

<dependencies>
    <dependency>
        <groupId>com.expediagroup.streamplatform</groupId>
        <artifactId>stream-registry-state-graphql-sender</artifactId>
    </dependency>
</dependencies>

This resolves to:

  • kotlin-stdlib : 1.2.71
  • kotlin-stdlib-common : 1.3.72

Proposed solution is to solidify kotlin-stdlib and kotlin-stdlib-common dependency versions in graphql-sender. Can also take this opportunity to update the kotlin-stdlib dependency in the top level pom.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant