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