tcap-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.restcomm.protocols.ss7.tcap</groupId>
<artifactId>tcap-cli</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-cli</artifactId>
<name>Restcomm jSS7 :: TCAP :: CLI :: ${project.artifactId}</name>
<dependencies>
<!-- <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId>
<version>${log4j.version}</version> </dependency> -->
<!-- MTP3 -->
<dependency>
<groupId>org.restcomm.protocols.ss7.management</groupId>
<artifactId>shell-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<resources>
<resource>
<directory>src/main/resources/archive-files</directory>
<targetPath>META-INF/services</targetPath>
</resource>
<resource>
<directory>src/main/resources/help</directory>
<targetPath>help</targetPath>
</resource>
</resources>
</build>
<profiles>
<profile>
<!-- Adds the files to JBoss AS -->
<id>deploy-module-jboss5</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>deploy</id>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<copy todir="${jboss.home}/lib" file="${project.build.directory}/${project.build.finalName}.jar" />
</tasks>
</configuration>
</execution>
<execution>
<id>undeploy</id>
<phase>clean</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete failonerror="fals" file="${jboss.home}/lib/${project.build.finalName}.jar" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Adds the files to JBoss AS -->
<id>deploy-module-wildfly</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>deploy</id>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<copy todir="${jboss.home}/lib" file="${project.build.directory}/${project.build.finalName}.jar" />
</tasks>
</configuration>
</execution>
<execution>
<id>undeploy</id>
<phase>clean</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete failonerror="fals" file="${jboss.home}/lib/${project.build.finalName}.jar" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>