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