/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

  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.mobicents.servlet.sip</groupId>
  5. <artifactId>sip-servlets-docs</artifactId>
  6. <version>1.7.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>sip-servlets-docs-sources-mobicents</artifactId>
  9. <properties>
  10. <platform.name>Mobicents</platform.name>
  11. <short.platform.name>MSS</short.platform.name>
  12. <cmd.platform.name>mss</cmd.platform.name>
  13. <home.link>mobicents-all-1.2.1.GA-jboss-4.2.3.GA/jboss/</home.link>
  14. <mss4j.release.zip>mss-1.6.0.FINAL-jboss-jdk6-5.1.0.GA-1007051519.zip</mss4j.release.zip>
  15. <mss4t.release.zip>mss-1.6.0.FINAL-apache-tomcat-6.0.20-1007051527.zip</mss4t.release.zip>
  16. <author.email.ivelin>ivelin.atanasoff.ivanov (at) gmail.com</author.email.ivelin>
  17. <author.email.jean>jean.deruelle (at) gmail.com</author.email.jean>
  18. <author.email.vlad>vladimir.ralev (at) gmail.com</author.email.vlad>
  19. </properties>
  20. <build>
  21. <resources>
  22. <resource>
  23. <directory>${basedir}/src/main/resources</directory>
  24. <filtering>true</filtering>
  25. </resource>
  26. </resources>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-dependency-plugin</artifactId>
  31. <executions>
  32. <execution>
  33. <id>unpack</id>
  34. <phase>generate-resources</phase>
  35. <goals>
  36. <goal>unpack</goal>
  37. </goals>
  38. <configuration>
  39. <artifactItems>
  40. <artifactItem>
  41. <groupId>${pom.groupId}</groupId>
  42. <artifactId>sip-servlets-docs-sources</artifactId>
  43. <version>${pom.version}</version>
  44. <type>jar</type>
  45. <overWrite>true</overWrite>
  46. <outputDirectory>${basedir}/src/main/resources</outputDirectory>
  47. </artifactItem>
  48. </artifactItems>
  49. </configuration>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-antrun-plugin</artifactId>
  55. <executions>
  56. <execution>
  57. <id>clean-resources</id>
  58. <phase>clean</phase>
  59. <goals>
  60. <goal>run</goal>
  61. </goals>
  62. <configuration>
  63. <tasks>
  64. <delete failonerror="false" includeemptydirs="true">
  65. <fileset dir="${basedir}/src" />
  66. </delete>
  67. </tasks>
  68. </configuration>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>