sip-servlets-docs-sources-telscale
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mobicents.servlet.sip.docs</groupId> <artifactId>sip-servlets-docs-sources-telscale</artifactId> <version>1.7.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.docs</groupId> <artifactId>sip-servlets-docs</artifactId> <version>1.7.0.FINAL</version> </parent> <artifactId>sip-servlets-docs-sources-telscale</artifactId> <properties> <platform.name>TelScale</platform.name> <short.platform.name>TelScale SIP Servlets</short.platform.name> <cmd.platform.name>telscale-ss</cmd.platform.name> <home.link>telscale-6.1/jboss-eap-5.1/jboss-as/</home.link> <mss4j.release.zip>telscale-ss-6.1-eap-5.1.GA.zip</mss4j.release.zip> <mss4t.release.zip>telscale-ss-1.0.GA-apache-tomcat-6.0.35.zip</mss4t.release.zip> <author.email.ivelin>iivanov@redhat.com</author.email.ivelin> <author.email.eduardo>emartins@redhat.com</author.email.eduardo> <author.email.jean>jean.deruelle@redhat.com</author.email.jean> <author.email.vlad>vralev@redhat.com</author.email.vlad> </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>${project.groupId}</groupId> <artifactId>sip-servlets-docs-sources</artifactId> <version>${project.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>