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