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