Kieker 1.16 (upcoming)
The latest successful nightly builds from the development branch are available for download.
- Download the nightly Kieker binary release 1.16 as zip or tar.gz
- Download the nightly Kieker source release 1.16 as zip or tar.gz
Downloading Snapshots with Maven
Kieker snapshots are deployed at the Sonatype Nexus Repository. To make Apache Maven aware of the snapshots, add the following repository definition to your pom.xml
in the repositories
section:
<repository> <id>sonatype.oss.snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository>
Add the required dependency configuration as follows:
<dependency> <groupId>net.kieker-monitoring</groupId> <artifactId>kieker</artifactId> <version>1.16-SNAPSHOT</version> </dependency>
The aspectj
or emf
enabled versions of Kieker can be accessed with an optional <classifier>aspectj</classifier>
or <classifier>emf</classifier>
parameter within the <dependency>...</dependency>
block:
<dependency> <groupId>net.kieker-monitoring</groupId> <artifactId>kieker</artifactId> <version>1.16-SNAPSHOT</version> <classifier>aspectj</classifier> </dependency> <dependency> <groupId>net.kieker-monitoring</groupId> <artifactId>kieker</artifactId> <version>1.16-SNAPSHOT</version> <classifier>emf</classifier> </dependency>