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