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