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