PageRenderTime 34ms CodeModel.GetById 6ms RepoModel.GetById 0ms app.codeStats 0ms

/protocols/ss7/isup/release/pom.xml

http://mobicents.googlecode.com/
XML | 109 lines | 103 code | 6 blank | 0 comment | 0 complexity | f864159ac4e8ac116618c4974aa0c7f6 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-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>isup-release</artifactId>
  10. <name>Mobicents SS7 :: ISUP :: 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}/../isup-impl/target">
  30. <include name="**.jar" />
  31. </fileset>
  32. <fileset dir="${basedir}/../isup-api/target">
  33. <include name="**.jar" />
  34. </fileset>
  35. </copy>
  36. </tasks>
  37. </configuration>
  38. </execution>
  39. <execution>
  40. <id>clean.rel</id>
  41. <phase>clean</phase>
  42. <goals>
  43. <goal>run</goal>
  44. </goals>
  45. <configuration>
  46. <tasks>
  47. <delete dir="${basedir}/${release.name}">
  48. </delete>
  49. </tasks>
  50. </configuration>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </profile>
  57. </profiles>
  58. <repositories>
  59. <repository>
  60. <id>maven</id>
  61. <name>Maven Repository</name>
  62. <url>http://repo1.maven.org/maven2</url>
  63. <snapshots>
  64. <enabled>false</enabled>
  65. </snapshots>
  66. </repository>
  67. <repository>
  68. <id>jboss</id>
  69. <name>JBoss Repository</name>
  70. <url>http://repository.jboss.org/maven2</url>
  71. <snapshots>
  72. <enabled>false</enabled>
  73. </snapshots>
  74. </repository>
  75. <repository>
  76. <id>jboss-snapshots</id>
  77. <name>JBoss Snapshot Repository</name>
  78. <url>http://snapshots.jboss.org/maven2</url>
  79. <releases>
  80. <enabled>false</enabled>
  81. </releases>
  82. <snapshots>
  83. <enabled>true</enabled>
  84. </snapshots>
  85. </repository>
  86. <repository>
  87. <id>jboss-public-repository-group</id>
  88. <name>JBoss Public Maven Repository Group</name>
  89. <url>
  90. https://repository.jboss.org/nexus/content/groups/public/
  91. </url>
  92. <layout>default</layout>
  93. <releases>
  94. <enabled>true</enabled>
  95. <updatePolicy>never</updatePolicy>
  96. </releases>
  97. <snapshots>
  98. <enabled>true</enabled>
  99. <updatePolicy>never</updatePolicy>
  100. </snapshots>
  101. </repository>
  102. </repositories>
  103. </project>