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