mobicents-ss7-docs-sources-mobicents
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mobicents.protocols.ss7.docs</groupId> <artifactId>mobicents-ss7-docs-sources-mobicents</artifactId> <version>2.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> <artifactId>mobicents-ss7-docs</artifactId> <groupId>org.mobicents.protocols.ss7.docs</groupId> <version>2.0.0.FINAL</version> </parent> <artifactId>mobicents-ss7-docs-sources-mobicents</artifactId> <name>Mobicents SS7 :: Docs :: Sources :: ${pom.artifactId}</name> <properties> <THIS.PLATFORM>Mobicents</THIS.PLATFORM> <JEE.PLATFORM>JBoss Application Server</JEE.PLATFORM> <THIS.ISSUE_TRACKER_URL>http://code.google.com/p/jss7/issues/list</THIS.ISSUE_TRACKER_URL> <THIS.RELEASE_SOURCE_CODE_URL>http://code.google.com/p/jss7/source/browse/</THIS.RELEASE_SOURCE_CODE_URL> <THIS.TRUNK_SOURCE_CODE_URL>http://code.google.com/p/jss7</THIS.TRUNK_SOURCE_CODE_URL> <THIS.RELEASE_BINARY_URL>http://code.google.com/p/jss7/wiki/Downloads?tm=2</THIS.RELEASE_BINARY_URL> <author.email.amit>amit.bhayani (at) gmail.com</author.email.amit> <author.email.bartosz>baranowb (at) gmail.com</author.email.bartosz> <author.email.sergey>serg.vetyutnev (at) gmail.com</author.email.sergey> <author.email.vinu>vinu.saseedaran (at) gmail.com</author.email.vinu> </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>mobicents-ss7-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> <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>