The Wayback Machine - https://web.archive.org/web/20201019145242/https://github.com/arangodb/java-velocypack-module-scala
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 

README.md

ArangoDB-Logo

ArangoDB VelocyPack Java Module Scala

Maven Central

Scala module for Java VelocyPack.

Added support for:

  • scala.Option
  • scala.collection.immutable.List
  • scala.collection.immutable.Map
  • scala.math.BigInt
  • scala.math.BigDecimal

Maven

To add the dependency to your project with maven, add the following code to your pom.xml:

<!-- Scala 2.11 -->
  <dependency>
    <groupId>com.arangodb</groupId>
    <artifactId>velocypack-module-scala_2.11</artifactId>
    <version>1.2.0</version>
  </dependency>

<!-- Scala 2.12 -->
  <dependency>
    <groupId>com.arangodb</groupId>
    <artifactId>velocypack-module-scala_2.12</artifactId>
    <version>1.2.0</version>
  </dependency>

Compile

mvn clean install

Usage / registering module

val vpack: VPack = new VPack.Builder().registerModule(new VPackScalaModule).build

Learn more

You can’t perform that action at this time.