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