Maven Repositories

implement the ChenilleKit dependencies into your project pom.xml

Releases

download the latest mavenized snapshots at http://www.chenillekit.org/mvnrepo/release/

					
...
<repositories>
	<repository>
		<id>chenillekit</id>
		<url>http://www.chenillekit.org/mvnrepo/release</url>
		<snapshots>
			<enabled>false</enabled>
		</snapshots>
	</repository>
</repositories>
...

				

Snapshots

download the latest mavenized snapshots at http://www.chenillekit.org/mvnrepo/snapshot/

					
...
<repositories>
	<repository>
		<id>chenillekit</id>
		<url>http://www.chenillekit.org/mvnrepo/snapshot</url>
		<snapshots>
			<enabled>true</enabled>
		</snapshots>
	</repository>
</repositories>
...