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