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