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