tcap-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.restcomm.protocols.ss7.tcap</groupId>
<artifactId>tcap-impl</artifactId>
<version>8.0.0-179</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>tcap-parent</artifactId>
<groupId>org.restcomm.protocols.ss7.tcap</groupId>
<version>8.0.0-179</version>
</parent>
<artifactId>tcap-impl</artifactId>
<name>Restcomm jSS7 :: TCAP :: Impl :: ${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>concurrent</groupId>
<artifactId>concurrent</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
<!-- netty -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>org.mobicents.protocols.asn</groupId>
<artifactId>asn</artifactId>
</dependency>
<dependency>
<groupId>org.restcomm.protocols.ss7.statistics</groupId>
<artifactId>statistics-impl</artifactId>
</dependency>
<dependency>
<groupId>org.restcomm.protocols.ss7.sccp</groupId>
<artifactId>sccp-api</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tcap-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.restcomm.protocols.ss7.mtp</groupId>
<artifactId>mtp</artifactId>
</dependency>
<dependency>
<groupId>org.restcomm.protocols.ss7.management</groupId>
<artifactId>shell-server-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>
${maven-surefire-plugin.version}
</version>
<configuration>
<suiteXmlFiles>
<!-- -->
<suiteXmlFile>testng-methods.xml</suiteXmlFile>
<suiteXmlFile>testng-classes.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>test</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
</dependency>
<dependency>
<groupId>org.restcomm.protocols.ss7.sccp</groupId>
<artifactId>sccp-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.restcomm.protocols.ss7.sccp</groupId>
<artifactId>sccp-impl</artifactId>
<type>test-jar</type>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.restcomm.protocols.ss7.mtp</groupId>
<artifactId>mtp-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<activation>
<property>
<name>maven.test.skip</name>
<value>true</value>
</property>
</activation>
</profile>
</profiles>
</project>