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