/protocols/asn/release/pom.xml

http://mobicents.googlecode.com/ · XML · 88 lines · 82 code · 6 blank · 0 comment · 0 complexity · 2eeca74e02b654977be3fd5fc2f4b310 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/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <packaging>pom</packaging>
  4. <parent>
  5. <groupId>org.mobicents</groupId>
  6. <artifactId>mobicents-parent</artifactId>
  7. <version>2.20</version>
  8. </parent>
  9. <artifactId>asn-release</artifactId>
  10. <name>Mobicents :: Release :: ${pom.artifactId}</name>
  11. <profiles>
  12. <profile>
  13. <id>release</id>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <artifactId>maven-antrun-plugin</artifactId>
  18. <inherited>false</inherited>
  19. <executions>
  20. <execution>
  21. <id>copy.binary.rel</id>
  22. <phase>install</phase>
  23. <goals>
  24. <goal>run</goal>
  25. </goals>
  26. <configuration>
  27. <tasks>
  28. <copy overwrite="true" todir="${basedir}/${release.name}">
  29. <fileset dir="${basedir}/../asn-impl/target">
  30. <include name="**.jar" />
  31. </fileset>
  32. </copy>
  33. </tasks>
  34. </configuration>
  35. </execution>
  36. <execution>
  37. <id>clean.rel</id>
  38. <phase>clean</phase>
  39. <goals>
  40. <goal>run</goal>
  41. </goals>
  42. <configuration>
  43. <tasks>
  44. <delete dir="${basedir}/${release.name}">
  45. </delete>
  46. </tasks>
  47. </configuration>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </profile>
  54. </profiles>
  55. <repositories>
  56. <repository>
  57. <id>jboss-snapshots</id>
  58. <name>JBoss Snapshot Repository</name>
  59. <url>http://snapshots.jboss.org/maven2</url>
  60. <releases>
  61. <enabled>false</enabled>
  62. </releases>
  63. <snapshots>
  64. <enabled>true</enabled>
  65. </snapshots>
  66. </repository>
  67. <repository>
  68. <id>jboss-public-repository-group</id>
  69. <name>JBoss Public Maven Repository Group</name>
  70. <url>https://repository.jboss.org/nexus/content/groups/public/</url>
  71. <layout>default</layout>
  72. <releases>
  73. <enabled>true</enabled>
  74. <updatePolicy>never</updatePolicy>
  75. </releases>
  76. <snapshots>
  77. <enabled>true</enabled>
  78. <updatePolicy>never</updatePolicy>
  79. </snapshots>
  80. </repository>
  81. </repositories>
  82. </project>