MVN

org.labcrypto : hottentot-runtime

Maven & Gradle

May 18, 2016

Hottentot RPC Framework · Hottentot is a simple and easy to use RPC Framework. It has its own IDL and generates source codes for different programming languages. C++ and Java are currently fully supported but Python and C support will be added soon. It also has a Serialization Framework which can be used without RPC stub generation feature to serialize objects in binary format.

<dependency>
    <groupId>org.labcrypto</groupId>
    <artifactId>hottentot-runtime</artifactId>
    <version>0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.labcrypto : hottentot-runtime to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.2

All Versions

Choose a version of org.labcrypto : hottentot-runtime to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.2
hottentot-runtime-0.2

How to add a dependency to Maven

Add the following org.labcrypto : hottentot-runtime maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.labcrypto</groupId>
    <artifactId>hottentot-runtime</artifactId>
    <version>0.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.labcrypto : hottentot-runtime gradle dependency to your build.gradle file:

implementation 'org.labcrypto:hottentot-runtime:0.2'

Gradle Kotlin DSL: Add the following org.labcrypto : hottentot-runtime gradle kotlin dependency to your build.gradle.kts file:

implementation("org.labcrypto:hottentot-runtime:0.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.labcrypto : hottentot-runtime sbt scala dependency to your build.sbt file:

libraryDependencies += "org.labcrypto" % "hottentot-runtime" % "0.2"