Skip to content

Commit

Permalink
adding binaries instructions now that code is on maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
arash.shokoufandeh committed Oct 25, 2016
1 parent 8b97f7d commit 07c4790
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,30 @@

# GLiTR

[![Build Status](https://travis-ci.org/nfl/glitr.svg?branch=master)](https://travis-ci.org/nfl/glitr) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.nfl.glitr/glitr/badge.svg?style=plastic)](https://maven-badges.herokuapp.com/maven-central/com.nfl.glitr/glitr) [![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/nfl/glitr/blob/master/LICENSE)
[![Build Status](https://travis-ci.org/nfl/glitr.svg?branch=master)](https://travis-ci.org/nfl/glitr) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.nfl.glitr/glitr/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.nfl.glitr/glitr) [![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/nfl/glitr/blob/master/LICENSE)

A library that lets you use Plain Old Java Objects to describe your GraphQL schema.

## Binaries

Example for Maven:

```xml
<dependency>
<groupId>com.nfl.glitr</groupId>
<artifactId>glitr</artifactId>
<version>x.y.z</version>
</dependency>
```

Example for gradle:

```gradle
compile("com.nfl.glitr:glitr:x.y.z")
```

Change history can be found here: [CHANGELOG.md](https://github.com/nfl/glitr/blob/master/CHANGELOG.md)

## How to use it

This is the famous "hello world" in [graphql-java](https://github.com/graphql-java/graphql-java) with GLiTR:
Expand Down

0 comments on commit 07c4790

Please sign in to comment.