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