webrtc-java
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.onvoid.webrtc</groupId> <artifactId>webrtc-java</artifactId> <version>0.9.0</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>dev.onvoid.webrtc</groupId> <artifactId>webrtc-java-parent</artifactId> <version>0.9.0</version> </parent> <artifactId>webrtc-java</artifactId> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>attach-artifact</id> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <attachartifact file="../webrtc-jni/target/${project.name}-${project.version}-${platform.classifier}.jar" classifier="${platform.classifier}" /> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine> --add-opens webrtc.java/dev.onvoid.webrtc=ALL-UNNAMED --add-opens webrtc.java/dev.onvoid.webrtc.logging=ALL-UNNAMED --add-opens webrtc.java/dev.onvoid.webrtc.media=ALL-UNNAMED --add-opens webrtc.java/dev.onvoid.webrtc.media.audio=ALL-UNNAMED --add-opens webrtc.java/dev.onvoid.webrtc.media.video=ALL-UNNAMED </argLine> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> <classifier>${platform.classifier}</classifier> </dependency> </dependencies> </project>