MVN

com.lambdazen.websocket : rmi-websocket

Maven & Gradle

Apr 20, 2013

RMIWebSocket · RMI WebSocket provides a library for remote method invocations between a browser and a Jetty Web Server using the HTML5 WebSocket. The idea is to enable tight method-level integration between the user interface and the server so that patterns such as MVP (Model-View-Presenter) can be applied in a Web environment.

<dependency>
    <groupId>com.lambdazen.websocket</groupId>
    <artifactId>rmi-websocket</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.lambdazen.websocket : rmi-websocket to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0

All Versions

Choose a version of com.lambdazen.websocket : rmi-websocket to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
rmi-websocket-1.0

How to add a dependency to Maven

Add the following com.lambdazen.websocket : rmi-websocket maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.lambdazen.websocket</groupId>
    <artifactId>rmi-websocket</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.lambdazen.websocket : rmi-websocket gradle dependency to your build.gradle file:

implementation 'com.lambdazen.websocket:rmi-websocket:1.0'

Gradle Kotlin DSL: Add the following com.lambdazen.websocket : rmi-websocket gradle kotlin dependency to your build.gradle.kts file:

implementation("com.lambdazen.websocket:rmi-websocket:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.lambdazen.websocket : rmi-websocket sbt scala dependency to your build.sbt file:

libraryDependencies += "com.lambdazen.websocket" % "rmi-websocket" % "1.0"

Advertisement