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