MVN

io.jart : jart

Maven & Gradle

May 06, 2020
3 stars

JART · JARTs are Java-based Asynchronous Real Time sockets. JART uses JNA to build a pure Java TCP/IP stack upon Netmap. It is implemented in imperative style (no TCP state machine) using asynchronous programming with the help of ea-async. JART runs on both Linux (with the proper Netmap kernel module) and FreeBSD with Netmap enabled. FreeBSD 12.1+ has Netmap in the kernel by default so it works "out of the box". While JART has proven fairly robust in limited testing, it is still a work-in-progress and may not be suitable for production use. Pull requests welcome!

<dependency>
    <groupId>io.jart</groupId>
    <artifactId>jart</artifactId>
    <version>0.0.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.jart : jart to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.0.4

All Versions

Choose a version of io.jart : jart to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.0.x
jart-0.0.4
jart-0.0.3

How to add a dependency to Maven

Add the following io.jart : jart maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.jart</groupId>
    <artifactId>jart</artifactId>
    <version>0.0.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.jart : jart gradle dependency to your build.gradle file:

implementation 'io.jart:jart:0.0.4'

Gradle Kotlin DSL: Add the following io.jart : jart gradle kotlin dependency to your build.gradle.kts file:

implementation("io.jart:jart:0.0.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.jart : jart sbt scala dependency to your build.sbt file:

libraryDependencies += "io.jart" % "jart" % "0.0.4"