mjsip-fork
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.bevuta</groupId> <artifactId>mjsip-fork</artifactId> <version>1.6+lumicall.4</version> </dependency>
<?xml version="1.0"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.bevuta</groupId> <artifactId>mjsip-fork</artifactId> <name>MjSIP-fork</name> <packaging>jar</packaging> <version>1.6+lumicall.4</version> <description>Fork of MjSIP SIP stack</description> <url>https://github.com/bevuta/MjSIP-fork</url> <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> <licenses> <license> <name>The GPL Version 2.0</name> <url>https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:bevuta/MjSIP-fork.git</connection> <url>scm:git:git@github.com:bevuta/MjSIP-fork.git</url> <developerConnection>scm:git:git@github.com:bevuta/MjSIP-fork.git</developerConnection> </scm> <developers> <developer> <name>Ivan Stefanischin</name> <email>ivan.stefanischin@bevuta.com</email> <organization>bevuta IT</organization> <organizationUrl>https://www.bevuta.com</organizationUrl> </developer> <developer> <name>Christian Lask</name> <email>christian.lask@bevuta.com</email> <organization>bevuta IT</organization> <organizationUrl>https://www.bevuta.com</organizationUrl> </developer> </developers> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.1</version> <type>jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.opentelecoms.util</groupId> <artifactId>util</artifactId> <version>1.0.0</version> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.5</source> <target>1.5</target> <excludes> <exclude>local/**/*.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <sourceFileExcludes> <exclude>local/**/*.java</exclude> </sourceFileExcludes> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <descriptors> <descriptor>src/main/assembly/bin.xml</descriptor> </descriptors> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</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://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>