Skip to content

Getting Started with Gradle

JJaraM edited this page Mar 31, 2016 · 1 revision

Adding repository

The first step is add the repository in your build.gradle file.

repositories {
    maven {
        url "http://jtracking-sonatype.rhcloud.com/content/repositories/snapshots"
    }
}

Adding dependency

After add the repository is necessary to add the jar dependecy.

compile 'com.jjm:chameleon:1.0-SNAPSHOT'
Clone this wiki locally