jcrygier / graphql-jpa

JPA Implementation of GraphQL (builds on graphql-java)
MIT License
165 stars 46 forks source link

Jar file #31

Closed ajmalsha closed 6 years ago

ajmalsha commented 7 years ago

How can i get the jar file of this project. I think its not in maven repository and also i'm facing some issue while using this also

<dependency>
  <groupId>com.crygier</groupId>
  <artifactId>graphql-jpa</artifactId>
  <version>0.3</version>
  <type>pom</type>
</dependency>
timtebeek commented 7 years ago

You'll want to add this to your pom.xml:

    <repositories>
        <repository>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <id>bintray-jcrygier-maven</id>
            <name>bintray</name>
            <url>http://dl.bintray.com/jcrygier/maven</url>
        </repository>
    </repositories>

As I've done here: https://github.com/timtebeek/graphql-jpa-spring-boot-starter/blob/master/pom.xml