Skip to content

How to install?

JJaraM edited this page Mar 7, 2016 · 1 revision

Maven

  1. Add the next repository in our pom.xml
<repositories>
     <repository>
          <id>SoftStew</id>
          <url>http://jtracking-sonatype.rhcloud.com/content/repositories/snapshots</url>
     </repository>
</repositories>
  1. Add the dependency in our pom.xml.
<dependency>
     <groupId>com.jjm</groupId>
     <artifactId>chameleon</artifactId>
     <version>1.0-SNAPSHOT</version>
</dependency>

Gradle

  1. Add the next repository in our build.gradle
repositories {
    maven {
        url "http://jtracking-sonatype.rhcloud.com/content/repositories/snapshots"
    }
}
  1. Add the dependency in our build.gradle.
compile 'com.jjm:chameleon:1.0-SNAPSHOT'
Clone this wiki locally