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