How to add a dependency to Maven
Add the following nl.stokpop : perfana-events-wiremock maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>nl.stokpop</groupId>
<artifactId>perfana-events-wiremock</artifactId>
<version>0.0.1</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following nl.stokpop : perfana-events-wiremock gradle dependency to your build.gradle
file:
implementation 'nl.stokpop:perfana-events-wiremock:0.0.1'
Gradle Kotlin DSL: Add the following nl.stokpop : perfana-events-wiremock gradle kotlin dependency to your build.gradle.kts
file:
implementation("nl.stokpop:perfana-events-wiremock:0.0.1")
How to add a dependency to SBT Scala
SBT Scala: Add the following nl.stokpop : perfana-events-wiremock sbt scala dependency to your build.sbt
file:
libraryDependencies += "nl.stokpop" % "perfana-events-wiremock" % "0.0.1"