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