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