PageRenderTime 35ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/protocols/ss7/m3ua/release/pom.xml

http://mobicents.googlecode.com/
XML | 109 lines | 102 code | 7 blank | 0 comment | 0 complexity | e82aed3010186a556b4a71ea2f15d6fa MD5 | raw file
Possible License(s): LGPL-3.0, GPL-3.0, LGPL-2.1, GPL-2.0, CC-BY-SA-3.0, CC0-1.0, Apache-2.0, BSD-3-Clause
  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>m3ua-release</artifactId>
  10. <profiles>
  11. <profile>
  12. <id>release</id>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-antrun-plugin</artifactId>
  17. <inherited>false</inherited>
  18. <executions>
  19. <execution>
  20. <id>copy.binary.rel</id>
  21. <phase>install</phase>
  22. <goals>
  23. <goal>run</goal>
  24. </goals>
  25. <configuration>
  26. <tasks>
  27. <copy overwrite="true" todir="${basedir}/${release.name}">
  28. <fileset dir="${basedir}/../impl/target">
  29. <include name="**.jar" />
  30. </fileset>
  31. <fileset dir="${basedir}/../api/target">
  32. <include name="**.jar" />
  33. </fileset>
  34. </copy>
  35. </tasks>
  36. </configuration>
  37. </execution>
  38. <execution>
  39. <id>clean.rel</id>
  40. <phase>clean</phase>
  41. <goals>
  42. <goal>run</goal>
  43. </goals>
  44. <configuration>
  45. <tasks>
  46. <delete dir="${basedir}/${release.name}">
  47. </delete>
  48. </tasks>
  49. </configuration>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </profile>
  56. </profiles>
  57. <repositories>
  58. <repository>
  59. <id>maven</id>
  60. <name>Maven Repository</name>
  61. <url>http://repo1.maven.org/maven2</url>
  62. <snapshots>
  63. <enabled>false</enabled>
  64. </snapshots>
  65. </repository>
  66. <repository>
  67. <id>jboss</id>
  68. <name>JBoss Repository</name>
  69. <url>http://repository.jboss.org/maven2</url>
  70. <snapshots>
  71. <enabled>false</enabled>
  72. </snapshots>
  73. </repository>
  74. <repository>
  75. <id>jboss-snapshots</id>
  76. <name>JBoss Snapshot Repository</name>
  77. <url>http://snapshots.jboss.org/maven2</url>
  78. <releases>
  79. <enabled>false</enabled>
  80. </releases>
  81. <snapshots>
  82. <enabled>true</enabled>
  83. </snapshots>
  84. </repository>
  85. <repository>
  86. <id>jboss-public-repository-group</id>
  87. <name>JBoss Public Maven Repository Group</name>
  88. <url>
  89. https://repository.jboss.org/nexus/content/groups/public/
  90. </url>
  91. <layout>default</layout>
  92. <releases>
  93. <enabled>true</enabled>
  94. <updatePolicy>never</updatePolicy>
  95. </releases>
  96. <snapshots>
  97. <enabled>true</enabled>
  98. <updatePolicy>never</updatePolicy>
  99. </snapshots>
  100. </repository>
  101. </repositories>
  102. </project>