Skip to content
This repository has been archived by the owner on Jan 14, 2018. It is now read-only.

Using RoboSpice snapshots

nkeskinov edited this page Nov 10, 2014 · 3 revisions

Maven

Add this configuration to your pom :

     <repositories>
       <repository>
         <id>snapshots-repo</id>
         <url>https://oss.sonatype.org/content/repositories/snapshots</url>
         <releases><enabled>false</enabled></releases>
         <snapshots><enabled>true</enabled></snapshots>
       </repository>
     </repositories>

Gradle

Add this configuration to your build.gradle file, in the repositories block:

maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }