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