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