MVN

com.dyuproject.protostuff : protostuff-model

Maven & Gradle

Dec 26, 2014
4 usages

protostuff :: model · An object model from the code generated by protoc(objects using the builder pattern). This acts as a "message descriptor" at runtime(especially for LITE_RUNTIME) ... which can also be used to generate code for other formats. This also provides runtime accessors for the fields of a message via reflection.

<dependency>
    <groupId>com.dyuproject.protostuff</groupId>
    <artifactId>protostuff-model</artifactId>
    <version>1.0.9</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.dyuproject.protostuff : protostuff-model to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.9

All Versions

Choose a version of com.dyuproject.protostuff : protostuff-model to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
protostuff-model-1.0.9
protostuff-model-1.0.8
protostuff-model-1.0.7
protostuff-model-1.0.6
protostuff-model-1.0.5
protostuff-model-1.0.4
protostuff-model-1.0.3
protostuff-model-1.0.2
protostuff-model-1.0.1
protostuff-model-1.0.0

How to add a dependency to Maven

Add the following com.dyuproject.protostuff : protostuff-model maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.dyuproject.protostuff</groupId>
    <artifactId>protostuff-model</artifactId>
    <version>1.0.9</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.dyuproject.protostuff : protostuff-model gradle dependency to your build.gradle file:

implementation 'com.dyuproject.protostuff:protostuff-model:1.0.9'

Gradle Kotlin DSL: Add the following com.dyuproject.protostuff : protostuff-model gradle kotlin dependency to your build.gradle.kts file:

implementation("com.dyuproject.protostuff:protostuff-model:1.0.9")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.dyuproject.protostuff : protostuff-model sbt scala dependency to your build.sbt file:

libraryDependencies += "com.dyuproject.protostuff" % "protostuff-model" % "1.0.9"

Advertisement