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