Skip to content

Updating the graphql-java version #21

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

Closed

Conversation

ignaciolarranaga
Copy link

The version of com.graphql-java:graphql-java is too old causing problems when used for example with com.graphql-java-kickstart/graphql-spring-boot-starter/7.0.1.

In particular: java.lang.ClassNotFoundException: graphql.schema.GraphQLCodeRegistry

It can be solved with an exclusion like this:

        <dependency>
            <groupId>com.graphql-java</groupId>
            <artifactId>graphql-java-extended-scalars</artifactId>
            <version>${graphql-java-extended-scalars.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>com.graphql-java</groupId>
                    <artifactId>graphql-java</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

But it seems it won't hurt to update the graphql-java version.

@nikolayandr
Copy link

Guys are there plans to use #15 as dependency ?

@setchy
Copy link
Contributor

setchy commented Oct 11, 2020

#30 has been merged

@setchy
Copy link
Contributor

setchy commented Jan 21, 2021

@ignaciolarranaga would you mind closing this PR given v15.0.0 was released late last year (#30) and there is an open PR for v16.0.0 (#33)

@ignaciolarranaga
Copy link
Author

Sure @setchy

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

Successfully merging this pull request may close these issues.

3 participants