Skip to content

Latest commit

 

History

History
98 lines (66 loc) · 2.24 KB

README.md

File metadata and controls

98 lines (66 loc) · 2.24 KB

GLiTR

Build Status Maven Central Download License

Glitr annotations

Binaries

Example for Maven:

<dependency>
    <groupId>com.nfl.glitr</groupId>
    <artifactId>glitr-core</artifactId>
    <version>x.y.z</version>
</dependency>

Example for gradle:

compile("com.nfl.glitr:glitr-core:x.y.z")

Change history can be found here: CHANGELOG.md

How to use the latest build with Gradle

Add the repositories:

repositories {
    maven { url  "http://dl.bintray.com/nfl/maven" }
}

Dependency:

dependencies {
  compile 'com.nfl.glitr:INSERT_LATEST_VERSION_HERE'
}

How to use the latest build with Maven

Add the repository:

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

Dependency:

<dependency>
    <groupId>com.nfl.glitr</groupId>
    <artifactId>glitr-core</artifactId>
    <version>INSERT_LATEST_VERSION_HERE</version>
</dependency>

Build

To build:

$ git clone git@github.com:NFL/glitr-core.git
$ cd glitr-core/
$ ./gradlew build

Further details on building can be found on the Getting Started page of the wiki.

Requirements

  • = Java 8

Contact Info

LICENSE

GLiTR is licensed under the MIT License. See LICENSE for more details.