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