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