An open API service indexing awesome lists of open source software.

https://github.com/arangodb/java-velocypack-module-joda


https://github.com/arangodb/java-velocypack-module-joda

arangodb java joda-time velocypack vpack

Last synced: about 18 hours ago
JSON representation

Awesome Lists containing this project

README

          

![ArangoDB-Logo](https://www.arangodb.com/docs/assets/arangodb_logo_2016_inverted.png)

# [DEPRECATED]: `velocypack-module-joda` has been deprecated.

Please consider using [jackson-dataformat-velocypack](https://github.com/arangodb/jackson-dataformat-velocypack)
in combination with [jackson-datatype-joda](https://github.com/FasterXML/jackson-datatype-joda) instead. For usage in
the ArangoDB Java driver, refer to the
official [serialization documentation](https://www.arangodb.com/docs/stable/drivers/java-reference-serialization.html).

---

# ArangoDB VelocyPack Java Module Joda-Time

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.arangodb/velocypack-module-joda/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.arangodb/velocypack-module-joda)

Joda-Time module for [Java VelocyPack](https://github.com/arangodb/java-velocypack).

Added support for:

- org.joda.time.DateTime;
- org.joda.time.Instant;
- org.joda.time.LocalDate;
- org.joda.time.LocalDateTime;

## Maven

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

```XML


com.arangodb
velocypack-module-joda
1.0.0

```

If you want to test with a snapshot version (e.g. 1.0.0-SNAPSHOT), add the staging repository of oss.sonatype.org to your pom.xml:

```XML


arangodb-snapshots
https://oss.sonatype.org/content/groups/staging

```

## Compile

```
mvn clean install -DskipTests=true -Dgpg.skip=true -Dmaven.javadoc.skip=true -B
```

## Usage / registering module

```Java
VPack vpack = new VPack.Builder().registerModule(new VPackJodaModule()).build();
```

## Learn more

- [ArangoDB](https://www.arangodb.com/)
- [Changelog](ChangeLog.md)