broker-client-websocket
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.aktin</groupId>
<artifactId>broker-client-websocket</artifactId>
<version>0.10</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <name>AKTIN : Broker : Client Websocket</name> <groupId>org.aktin</groupId> <artifactId>broker-client-websocket</artifactId> <version>0.10</version> <description> Broker websocket client library. This library can be used to keep a live connection to the broker and retrieve notifications for new queries. </description> <parent> <groupId>org.aktin</groupId> <artifactId>broker</artifactId> <version>0.10</version> </parent> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <classpathPrefix>lib/</classpathPrefix> <mainClass>org.aktin.broker.client.Application</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.eclipse.jetty.websocket/websocket-client --> <dependency> <groupId>org.java-websocket</groupId> <artifactId>Java-WebSocket</artifactId> <version>1.3.0</version> </dependency> </dependencies> </project>