client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.obs-websocket.community</groupId> <artifactId>client</artifactId> <version>2.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.obs-websocket.community</groupId> <artifactId>client</artifactId> <version>2.0.0</version> <name>OBS WebSocket Client</name> <description>Library to connect to the OBS WebSocket interface.</description> <url>https://github.com/obs-websocket-community-projects/obs-websocket-java</url> <inceptionYear>2021</inceptionYear> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>ChristopheCVB</id> <name>Christophe Carvalho Vilas-Boas</name> <email>christophe.carvalhovilasboas@gmail.com</email> </developer> <developer> <id>TinaTiel</id> <email>contact@tinatiel.com</email> </developer> <developer> <id>Pjiesco</id> <email>pjiesco@gmail.com</email> </developer> </developers> <scm> <connection>scm:https://github.com/obs-websocket-community-projects/obs-websocket-java.git</connection> <developerConnection>scm:git://github.com/obs-websocket-community-projects/obs-websocket-java.git</developerConnection> <url>https://github.com/obs-websocket-community-projects/obs-websocket-java</url> </scm> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.9.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.jetty.websocket</groupId> <artifactId>websocket-client</artifactId> <version>9.4.49.v20220914</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.3</version> <scope>runtime</scope> </dependency> </dependencies> </project>