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