sccp-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mobicents.protocols.ss7.sccp</groupId> <artifactId>sccp-cli</artifactId> <version>8.0.112</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>sccp-parent</artifactId> <groupId>org.mobicents.protocols.ss7.sccp</groupId> <version>8.0.112</version> </parent> <artifactId>sccp-cli</artifactId> <name>Restcomm jSS7 :: SCCP :: CLI :: ${project.artifactId}</name> <dependencies> <!-- MTP3 --> <dependency> <groupId>org.mobicents.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>