google-webrtc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.infobip</groupId> <artifactId>google-webrtc</artifactId> <version>1.0.43591</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> <groupId>com.infobip</groupId> <artifactId>google-webrtc</artifactId> <version>1.0.43591</version> <packaging>aar</packaging> <name>Google's WebRTC Android library</name> <description>Google's Webrtc Android library</description> <url>https://webrtc.org/</url> <organization> <name>Infobip Ltd.</name> <url>https://www.infobip.com</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>team-delta</id> <name>Team Delta</name> <email>Team_Delta@infobip.com</email> <url>https://www.infobip.com</url> </developer> </developers> <scm> <url>https://github.com/infobip/infobip-rtc-android</url> <connection>https://github.com/infobip/infobip-rtc-android.git</connection> <developerConnection>https://github.com/infobip/infobip-rtc-android.git</developerConnection> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.commitid>c5095250a935041899be6f135078d5f19f61cb7a</project.build.commitid> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-classes</phase> <configuration> <tasks> <unzip src="${basedir}/../classes.jar" dest="${project.build.directory}/classes"> <patternset> <exclude name="META-INF"/> <exclude name="META-INF/*"/> </patternset> </unzip> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>com.simpligility.maven.plugins</groupId> <artifactId>android-maven-plugin</artifactId> <version>4.3.0</version> <extensions>true</extensions> <configuration> <sign> <debug>false</debug> </sign> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>