/docs/sip-servlets/sources-mobicents/pom.xml
http://mobicents.googlecode.com/ · XML · 81 lines · 74 code · 7 blank · 0 comment · 0 complexity · 057981439974d9fed0e1a654cc8a38d8 MD5 · raw file
- <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>sip-servlets-docs</artifactId>
- <version>1.7.0-SNAPSHOT</version>
- </parent>
-
- <artifactId>sip-servlets-docs-sources-mobicents</artifactId>
-
- <properties>
- <platform.name>Mobicents</platform.name>
- <short.platform.name>MSS</short.platform.name>
- <cmd.platform.name>mss</cmd.platform.name>
- <home.link>mobicents-all-1.2.1.GA-jboss-4.2.3.GA/jboss/</home.link>
- <mss4j.release.zip>mss-1.6.0.FINAL-jboss-jdk6-5.1.0.GA-1007051519.zip</mss4j.release.zip>
- <mss4t.release.zip>mss-1.6.0.FINAL-apache-tomcat-6.0.20-1007051527.zip</mss4t.release.zip>
- <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.vlad>vladimir.ralev (at) gmail.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>${pom.groupId}</groupId>
- <artifactId>sip-servlets-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>