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