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