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