2 Star 0 Fork 0

mirrors_jitsi/libjitsi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 13.35 KB
一键复制 编辑 原始数据 按行查看 历史
<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>org.jitsi</groupId>
<artifactId>libjitsi</artifactId>
<version>1.1-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>libjitsi</name>
<description>
libjitsi is an advanced Java media library for secure real-time audio/video
communication
</description>
<url>https://github.com/jitsi/libjitsi</url>
<organization>
<name>jitsi.org</name>
<url>https://jitsi.org</url>
</organization>
<developers>
<developer>
<id>org.jitsi</id>
<name>Jitsi Team</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<url>https://github.com/jitsi/libjitsi</url>
<connection>scm:git:https://github.com/jitsi/libjitsi.git</connection>
<developerConnection>scm:git:https://github.com/jitsi/libjitsi.git</developerConnection>
<tag>HEAD</tag>
</scm>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://github.com/jitsi/libjitsi/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<bouncycastle.version>1.77</bouncycastle.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>ch.imvs</groupId>
<artifactId>sdes4j</artifactId>
<version>1.1.5</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.13.0</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bctls-jdk18on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>fmj</artifactId>
<version>1.0.2-jitsi</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jitsi-utils</artifactId>
<version>1.0-126-g02b0c86</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jitsi-srtp</artifactId>
<version>1.1-15-ga19c05a</version>
</dependency>
<dependency>
<groupId>org.opentelecoms.sdp</groupId>
<artifactId>java-sdp-nist-bridge</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jitsi-lgpl-dependencies</artifactId>
<version> 1.2-23-g7b49874</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>zrtp4j-light</artifactId>
<version>4.1.3</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi.core</artifactId>
<version>8.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>24.0.1</version>
<scope>provided</scope>
</dependency>
<!-- test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.pkts</groupId>
<artifactId>pkts-core</artifactId>
<version>3.0.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.16.0</version>
<configuration>
<ruleSet>
<ignoreVersions>
<ignoreVersion>
<type>regex</type>
<version>.+-(alpha|beta|M|RC).*</version>
</ignoreVersion>
</ignoreVersions>
</ruleSet>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.9</version>
<extensions>true</extensions>
<configuration>
<excludeDependencies>jitsi-lgpl-dependencies</excludeDependencies>
<instructions>
<_noclassforname>true</_noclassforname>
<Import-Package>*;version=!,,sun.awt.X11,sun.lwawt,sun.lwawt.macosx
</Import-Package>
<Export-Package>org.jitsi.util.*,
org.jitsi.service.*,
org.jitsi.impl.neomedia,
org.jitsi.impl.neomedia.codec,
org.jitsi.impl.neomedia.codec.video.h264,
org.jitsi.impl.neomedia.device,
org.jitsi.impl.neomedia.format,
org.jitsi.impl.neomedia.recording
</Export-Package>
<Private-Package>org.jitsi.examples.*,org.jitsi.impl.*
</Private-Package>
<Bundle-Activator>org.jitsi.service.libjitsi.LibJitsiActivator
</Bundle-Activator>
<Bundle-License>
Apache-2.0;link="https://github.com/jitsi/libjitsi/raw/master/LICENSE"
</Bundle-License>
<_removeheaders>Bnd-*, Tool, Require-Capability, Include-Resource
</_removeheaders>
<Include-Resource>
{maven-resources},
META-INF/LICENSE=LICENSE
</Include-Resource>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<release>11</release>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-h</arg>
<arg>${project.build.directory}/native/javah/</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<doclint>-missing</doclint>
<source>11</source>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<excludeResources>true</excludeResources>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>osgi-native</id>
<activation>
<property>
<name>osgi-native</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-NativeCode>
darwin-x86-64/libjnawtrenderer.dylib;
darwin-x86-64/libjnmaccoreaudio.dylib;
darwin-x86-64/libjnopus.dylib;
darwin-x86-64/libjnportaudio.dylib;
darwin-x86-64/libjnquicktime.dylib;
darwin-x86-64/libjnscreencapture.dylib;
darwin-x86-64/libjnspeex.dylib;
darwin-x86-64/libjnvpx.dylib;osname=Mac OS X;processor=x86-64,
darwin-aarch64/libjnawtrenderer.dylib;
darwin-aarch64/libjnmaccoreaudio.dylib;
darwin-aarch64/libjnopus.dylib;
darwin-aarch64/libjnportaudio.dylib;
darwin-aarch64/libjnquicktime.dylib;
darwin-aarch64/libjnscreencapture.dylib;
darwin-aarch64/libjnspeex.dylib;
darwin-aarch64/libjnvpx.dylib;osname=Mac OS X;processor=AArch64,
linux-x86/libjnawtrenderer.so;
linux-x86/libjnopus.so;
linux-x86/libjnportaudio.so;
linux-x86/libjnpulseaudio.so;
linux-x86/libjnscreencapture.so;
linux-x86/libjnspeex.so;
linux-x86/libjnvideo4linux2.so;osname=Linux;processor=x86,
linux-x86-64/libjnawtrenderer.so;
linux-x86-64/libjnopus.so;
linux-x86-64/libjnportaudio.so;
linux-x86-64/libjnpulseaudio.so;
linux-x86-64/libjnscreencapture.so;
linux-x86-64/libjnspeex.so;
linux-x86-64/libjnvideo4linux2.so;
linux-x86-64/libjnvpx.so;osname=Linux;processor=x86-64,
linux-aarch64/libjnawtrenderer.so;
linux-aarch64/libjnopus.so;
linux-aarch64/libjnportaudio.so;
linux-aarch64/libjnpulseaudio.so;
linux-aarch64/libjnscreencapture.so;
linux-aarch64/libjnspeex.so;
linux-aarch64/libjnvideo4linux2.so;
linux-aarch64/libjnvpx.so;osname=Linux;processor=AArch64,
linux-ppc64le/libjnawtrenderer.so;
linux-ppc64le/libjnopus.so;
linux-ppc64le/libjnportaudio.so;
linux-ppc64le/libjnpulseaudio.so;
linux-ppc64le/libjnscreencapture.so;
linux-ppc64le/libjnspeex.so;
linux-ppc64le/libjnvideo4linux2.so;osname=Linux;processor=PowerPC-64-LE,
win32-x86-64/jnawtrenderer.dll;
win32-x86-64/jndirectshow.dll;
win32-x86-64/jnopus.dll;
win32-x86-64/jnportaudio.dll;
win32-x86-64/jnscreencapture.dll;
win32-x86-64/jnspeex.dll;
win32-x86-64/jnvpx.dll;
win32-x86-64/jnwasapi.dll;
win32-x86-64/jnwincoreaudio.dll;osname=Win32;processor=x86-64
</Bundle-NativeCode>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<activation>
<property>
<name>release</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_jitsi/libjitsi.git
[email protected]:mirrors_jitsi/libjitsi.git
mirrors_jitsi
libjitsi
libjitsi
master

搜索帮助