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