restcomm-docs-sources-telscale
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.mobicents.servlet.sip</groupId>
<artifactId>restcomm-docs-sources-telscale</artifactId>
<version>1.0.0.FINAL</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.mobicents.servlet.sip</groupId>
<artifactId>restcomm-docs</artifactId>
<version>1.0.0.FINAL</version>
</parent>
<artifactId>restcomm-docs-sources-telscale</artifactId>
<properties>
<platform.name>TelScale</platform.name>
<short.platform.name>TelScale RestComm</short.platform.name>
<cmd.platform.name>telscale-restcomm</cmd.platform.name>
<ctf.version>${project.version}</ctf.version>
<author.email.ivelin>ivelin.atanasoff.ivanov (at) gmail.com</author.email.ivelin>
<author.email.jean>jean.deruelle (at) gmail.com</author.email.jean>
<author.email.georges>quintana.thomas (at) gmail.com</author.email.georges>
</properties>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${pom.groupId}</groupId>
<artifactId>restcomm-docs-sources</artifactId>
<version>${pom.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${basedir}/src/main/resources</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<copy file="mkbk" todir="src/main/resources/" />
<copy file="Makefile" todir="src/main/resources/" />
<copy file="publican.cfg" todir="src/main/resources/" />
</tasks>
</configuration>
</execution>
<execution>
<id>clean-resources</id>
<phase>clean</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<delete failonerror="false" includeemptydirs="true">
<fileset dir="${basedir}/src" />
</delete>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>