cometd-java-websocket-javax-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-websocket-javax-client</artifactId>
<version>4.0.9</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-websocket</artifactId>
<version>4.0.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cometd-java-websocket-javax-client</artifactId>
<name>CometD :: Java :: WebSocket :: JSR 356 Client</name>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.cometd.websocket.client</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-websocket-common-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-client-api</artifactId>
</dependency>
</dependencies>
</project>