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