documentation home

FAQ  Use a snapshot version of Miredot


Problem

You would like to use a recent snapshot version of Miredot to try out a new feature or enjoy the benefits of a recent bugfix.

Solution

Before you can use a snapshot version you need to add the Miredot snapshot repository to your pom or build script. You need both the stable and snapshot repositories since snapshots can also depend on stable artifacts.

Maven (pom.xml)

<pluginRepositories>
   <pluginRepository>
      <id>miredot</id>
      <name>MireDot Releases</name>
      <url>http://nexus.qmino.com/content/repositories/miredot</url>
      <snapshots>
         <enabled>false</enabled>
      </snapshots>
   </pluginRepository>
   <pluginRepository>
      <id>miredot snapshots</id>
      <name>MireDot Snapshots</name>
      <url>http://nexus.qmino.com/content/repositories/miredot-snapshots</url>
   </pluginRepository>
</pluginRepositories>

Gradle (build.gradle)

buildscript {
   repositories {
      maven { url "http://nexus.qmino.com/content/repositories/miredot" }
      maven { url "http://nexus.qmino.com/content/repositories/miredot-snapshots" }
   }
}