/protocols/asn/docs/sources-jbcp/pom.xml

http://mobicents.googlecode.com/ · XML · 80 lines · 73 code · 7 blank · 0 comment · 0 complexity · 4c3c5120f40406f1984b81b9e00b3bf9 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. <artifactId>mobicents-asn-docs</artifactId>
  5. <groupId>org.mobicents.protocols.asn.docs</groupId>
  6. <version>2.0.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>mobicents-asn-docs-sources-jbcp</artifactId>
  9. <properties>
  10. <THIS.PLATFORM>JBoss Communications</THIS.PLATFORM>
  11. <JEE.PLATFORM>JBoss Enterprise Application Platform</JEE.PLATFORM>
  12. <THIS.ISSUE_TRACKER_URL>http://bugzilla.redhat.com/bugzilla/</THIS.ISSUE_TRACKER_URL>
  13. <THIS.RELEASE_SOURCE_CODE_URL>?</THIS.RELEASE_SOURCE_CODE_URL>
  14. <THIS.TRUNK_SOURCE_CODE_URL>NOT AVAILABLE</THIS.TRUNK_SOURCE_CODE_URL>
  15. <author.email.amit>abhayani (at) redhat.com</author.email.amit>
  16. <author.email.bartosz>bbaranow (at) redhat.com</author.email.bartosz>
  17. <author.email.oleg>okulikov (at) redhat.com</author.email.oleg>
  18. </properties>
  19. <build>
  20. <resources>
  21. <resource>
  22. <directory>${basedir}/src/main/resources</directory>
  23. <filtering>true</filtering>
  24. </resource>
  25. </resources>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-dependency-plugin</artifactId>
  30. <executions>
  31. <execution>
  32. <id>unpack</id>
  33. <phase>generate-resources</phase>
  34. <goals>
  35. <goal>unpack</goal>
  36. </goals>
  37. <configuration>
  38. <artifactItems>
  39. <artifactItem>
  40. <groupId>${pom.groupId}</groupId>
  41. <artifactId>mobicents-asn-docs-sources</artifactId>
  42. <version>${pom.version}</version>
  43. <type>jar</type>
  44. <overWrite>true</overWrite>
  45. <outputDirectory>${basedir}/src/main/resources</outputDirectory>
  46. </artifactItem>
  47. </artifactItems>
  48. </configuration>
  49. </execution>
  50. </executions>
  51. </plugin>
  52. <plugin>
  53. <artifactId>maven-antrun-plugin</artifactId>
  54. <executions>
  55. <execution>
  56. <id>clean-resources</id>
  57. <phase>clean</phase>
  58. <goals>
  59. <goal>run</goal>
  60. </goals>
  61. <configuration>
  62. <tasks>
  63. <delete failonerror="false" includeemptydirs="true">
  64. <fileset dir="${basedir}/src" />
  65. </delete>
  66. </tasks>
  67. </configuration>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>