Source Code
The source code is available at github.
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>2.0.1-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>