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