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