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