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