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