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