How to add a dependency to Maven
Add the following me.sujanpoudel.multiplatform.utils : multiplatform-paths-desktop maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>me.sujanpoudel.multiplatform.utils</groupId>
<artifactId>multiplatform-paths-desktop</artifactId>
<version>0.2.0-SNAPSHOT-1</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following me.sujanpoudel.multiplatform.utils : multiplatform-paths-desktop gradle dependency to your build.gradle
file:
implementation 'me.sujanpoudel.multiplatform.utils:multiplatform-paths-desktop:0.2.0-SNAPSHOT-1'
Gradle Kotlin DSL: Add the following me.sujanpoudel.multiplatform.utils : multiplatform-paths-desktop gradle kotlin dependency to your build.gradle.kts
file:
implementation("me.sujanpoudel.multiplatform.utils:multiplatform-paths-desktop:0.2.0-SNAPSHOT-1")
How to add a dependency to SBT Scala
SBT Scala: Add the following me.sujanpoudel.multiplatform.utils : multiplatform-paths-desktop sbt scala dependency to your build.sbt
file:
libraryDependencies += "me.sujanpoudel.multiplatform.utils" % "multiplatform-paths-desktop" % "0.2.0-SNAPSHOT-1"