webrtc-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.bitbreeds.webrtc</groupId> <artifactId>webrtc-example</artifactId> <version>0.2.5</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> <artifactId>bitbreeds-webrtc</artifactId> <groupId>com.bitbreeds.webrtc</groupId> <version>0.2.5</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>webrtc-example</artifactId> <profiles> <profile> <id>build-example</id> <build> <plugins> <plugin> <groupId>com.github.chrisdchristo</groupId> <artifactId>capsule-maven-plugin</artifactId> <version>1.5.1</version> <executions> <execution> <goals> <goal>build</goal> </goals> <configuration> <appClass>com.bitbreeds.webrtc.example.DatachannelServer</appClass> <type>fat</type> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.bitbreeds.webrtc</groupId> <artifactId>webrtc-signaling</artifactId> <version>0.2.5</version> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-websocket</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-core</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.0</version> </dependency> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.1.3</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.3</version> </dependency> </dependencies> </project>