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