How to add a dependency to Maven
Add the following nl.cloudfarming.client : lib-swingx maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>nl.cloudfarming.client</groupId>
<artifactId>lib-swingx</artifactId>
<version>1.6.2-NB80-NO-WS</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following nl.cloudfarming.client : lib-swingx gradle dependency to your build.gradle
file:
implementation 'nl.cloudfarming.client:lib-swingx:1.6.2-NB80-NO-WS'
Gradle Kotlin DSL: Add the following nl.cloudfarming.client : lib-swingx gradle kotlin dependency to your build.gradle.kts
file:
implementation("nl.cloudfarming.client:lib-swingx:1.6.2-NB80-NO-WS")
How to add a dependency to SBT Scala
SBT Scala: Add the following nl.cloudfarming.client : lib-swingx sbt scala dependency to your build.sbt
file:
libraryDependencies += "nl.cloudfarming.client" % "lib-swingx" % "1.6.2-NB80-NO-WS"