MVN

fr.matthieu-vergne : multi-map

Maven & Gradle

Jul 11, 2017
0 stars

Java MultiMap · Provides an interface and implementations of a Java structure able to map a key to several values at once. Initially inspired from the Apache MultiMap, it takes a different perspective where the generics should be fully used to properly constrain the types of the instances provided.

<dependency>
    <groupId>fr.matthieu-vergne</groupId>
    <artifactId>multi-map</artifactId>
    <version>2.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of fr.matthieu-vergne : multi-map to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.0

All Versions

Choose a version of fr.matthieu-vergne : multi-map to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0
multi-map-2.0

How to add a dependency to Maven

Add the following fr.matthieu-vergne : multi-map maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>fr.matthieu-vergne</groupId>
    <artifactId>multi-map</artifactId>
    <version>2.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following fr.matthieu-vergne : multi-map gradle dependency to your build.gradle file:

implementation 'fr.matthieu-vergne:multi-map:2.0'

Gradle Kotlin DSL: Add the following fr.matthieu-vergne : multi-map gradle kotlin dependency to your build.gradle.kts file:

implementation("fr.matthieu-vergne:multi-map:2.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following fr.matthieu-vergne : multi-map sbt scala dependency to your build.sbt file:

libraryDependencies += "fr.matthieu-vergne" % "multi-map" % "2.0"

Advertisement