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