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