-
Notifications
You must be signed in to change notification settings - Fork 0
How to install?
JJaraM edited this page Mar 7, 2016
·
1 revision
- 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>
- Add the dependency in our pom.xml.
<dependency>
<groupId>com.jjm</groupId>
<artifactId>chameleon</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
- Add the next repository in our build.gradle
repositories {
maven {
url "http://jtracking-sonatype.rhcloud.com/content/repositories/snapshots"
}
}
- Add the dependency in our build.gradle.
compile 'com.jjm:chameleon:1.0-SNAPSHOT'