/protostuff

java serialization library, proto compiler, code generator

Primary LanguageJavaApache License 2.0Apache-2.0

Usage

  1. When you generate schemas for your classes

Maven:

<dependency>
  <groupId>io.protostuff</groupId>
  <artifactId>protostuff-core</artifactId>
  <version>1.3.3</version>
</dependency>

Gradle:

dependencies {
    compile 'io.protostuff:protostuff-core:1.3.3'
}
  1. Runtime schemas

Maven:

<dependency>
  <groupId>io.protostuff</groupId>
  <artifactId>protostuff-runtime</artifactId>
  <version>1.3.3</version>
</dependency>

Gradle:

dependencies {
    compile 'io.protostuff:protostuff-runtime:1.3.3'
}

Documentation

http://code.google.com/p/protostuff/

Questions/Concerns/Suggestions

Requirements

Java 1.7 or higher

Build Requirements

Maven 3.2.3 or higher