To make installation of our Maven plugin as easy as possible, we provide now a dedicated Maven repository to make this plugin available. Once this repository defined in your Maven configuration, Kalistick plugin will be automatically downloaded in your local repository. Next updates will also be downloaded without any specific action.
Setup
Repository URL is: http://maven.kalistick.com/content/groups/public If you have a repository manager, like Nexus, Artifactory or Archiva, you just have to add this URL in your administration console. Otherwise, repository must be declared in your local Maven configuration. Here is the easy way, just add following lines in your .m2/.settings.xml file:
...
<pluginGroups>
<pluginGroup>com.kalistick.client.connector</pluginGroup>
</pluginGroups>
...
<profiles>
<profile>
<id>kalistick</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
...
<pluginRepositories>
<pluginRepository>
<id>kalistick</id>
<name>Kalistick Maven 2.x Repository</name>
<url>http://maven.kalistick.com/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
...
NB: pluginGroup tag allows using plugin without its groupId, e.g. mvn kalistick:check.
