/protocols/ss7/release/pom.xml

http://mobicents.googlecode.com/ · XML · 175 lines · 151 code · 16 blank · 8 comment · 0 complexity · a9c8be9ea0955931874145b97ae3fd9f MD5 · raw file

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <packaging>pom</packaging>
  5. <parent>
  6. <artifactId>mobicents-parent</artifactId>
  7. <groupId>org.mobicents</groupId>
  8. <version>2.20-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>sources-checkout</artifactId>
  11. <groupId>org.mobicents.protocols.ss7.release</groupId>
  12. <version>2.0.0-SNAPSHOT</version> <!-- ??? proper version? -->
  13. <properties>
  14. <checkout.basedir>${checkout.dir}</checkout.basedir>
  15. <checkout.username>mobicents-read-only</checkout.username>
  16. <checkout.password />
  17. <!-- TAGS
  18. <asn.connectionURL>scm:svn:https://mobicents.googlecode.com/svn/tags/protocols/asn/asn-1.0.0.CR1</asn.connectionURL>
  19. <stream.connectionURL>scm:svn:https://mobicents.googlecode.com/svn/tags/protocols/stream/stream-1.0.0.CR1</stream.connectionURL>
  20. <ss7.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/tags/protocols/ss7/mobicents-ss7-1.0.0.CR1</ss7.connectionURL>
  21. -->
  22. <!-- TRUNK -->
  23. <asn.connectionURL>scm:svn:https://mobicents.googlecode.com/svn/trunk/protocols/asn</asn.connectionURL>
  24. <stream.connectionURL>scm:svn:https://mobicents.googlecode.com/svn/trunk/protocols/stream</stream.connectionURL>
  25. <ss7.connectionURL>scm:svn:http://mobicents.googlecode.com/svn/trunk/protocols/ss7</ss7.connectionURL>
  26. </properties>
  27. <profiles>
  28. <profile>
  29. <id>checkout</id>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-scm-plugin</artifactId>
  35. <version>1.5</version>
  36. <inherited>false</inherited>
  37. <executions>
  38. <execution>
  39. <id>asn-checkout</id>
  40. <goals>
  41. <goal>checkout</goal>
  42. </goals>
  43. <phase>validate</phase>
  44. <configuration>
  45. <scmVersion>HEAD</scmVersion>
  46. <scmVersionType>revision</scmVersionType>
  47. <skipCheckoutIfExists>true</skipCheckoutIfExists>
  48. <checkoutDirectory>
  49. ${checkout.basedir}/asn
  50. </checkoutDirectory>
  51. <connectionUrl>
  52. ${asn.connectionURL}
  53. </connectionUrl>
  54. <username>${checkout.username}</username>
  55. <password>${checkout.password}</password>
  56. </configuration>
  57. </execution>
  58. <execution>
  59. <id>stream-checkout</id>
  60. <goals>
  61. <goal>checkout</goal>
  62. </goals>
  63. <phase>validate</phase>
  64. <configuration>
  65. <scmVersion>HEAD</scmVersion>
  66. <scmVersionType>revision</scmVersionType>
  67. <skipCheckoutIfExists>true</skipCheckoutIfExists>
  68. <checkoutDirectory>${checkout.basedir}/stream</checkoutDirectory>
  69. <connectionUrl>${stream.connectionURL}</connectionUrl>
  70. <username>${checkout.username}</username>
  71. <password>${checkout.password}</password>
  72. </configuration>
  73. </execution>
  74. <execution>
  75. <id>ss7-checkout</id>
  76. <goals>
  77. <goal>checkout</goal>
  78. </goals>
  79. <phase>validate</phase>
  80. <configuration>
  81. <scmVersion>HEAD</scmVersion>
  82. <scmVersionType>revision</scmVersionType>
  83. <skipCheckoutIfExists>true</skipCheckoutIfExists>
  84. <checkoutDirectory>${checkout.basedir}/ss7</checkoutDirectory>
  85. <connectionUrl>${ss7.connectionURL}</connectionUrl>
  86. <username>${checkout.username}</username>
  87. <password>${checkout.password}</password>
  88. </configuration>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </profile>
  95. </profiles>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <artifactId>maven-release-plugin</artifactId>
  100. <configuration>
  101. <autoVersionSubmodules>true</autoVersionSubmodules>
  102. <tagBase>https://mobicents.googlecode.com/svn/tags/protocols/ss7/release</tagBase>
  103. <!-- ?? <branchBase>https://mobicents.googlecode.com/svn/branches/protocols/ss7/1.x.y/release</branchBase> -->
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. <scm>
  109. <connection>scm:svn:https://mobicents.googlecode.com/svn/tags/protocols/ss7/release/</connection>
  110. <developerConnection>scm:svn:https://mobicents.googlecode.com/svn/tags/protocols/ss7/release</developerConnection>
  111. <url>http://mobicents.googlecode.com/svn/tags/protocols/ss7/release</url>
  112. </scm>
  113. <repositories>
  114. <repository>
  115. <id>maven</id>
  116. <name>Maven Repository</name>
  117. <url>http://repo1.maven.org/maven2</url>
  118. <snapshots>
  119. <enabled>false</enabled>
  120. </snapshots>
  121. </repository>
  122. <repository>
  123. <id>jboss</id>
  124. <name>JBoss Repository</name>
  125. <url>http://repository.jboss.org/maven2</url>
  126. <snapshots>
  127. <enabled>false</enabled>
  128. </snapshots>
  129. </repository>
  130. <repository>
  131. <id>jboss-snapshots</id>
  132. <name>JBoss Snapshot Repository</name>
  133. <url>http://snapshots.jboss.org/maven2</url>
  134. <releases>
  135. <enabled>false</enabled>
  136. </releases>
  137. <snapshots>
  138. <enabled>true</enabled>
  139. </snapshots>
  140. </repository>
  141. <repository>
  142. <id>jboss-public-repository-group</id>
  143. <name>JBoss Public Maven Repository Group</name>
  144. <url>
  145. https://repository.jboss.org/nexus/content/groups/public/
  146. </url>
  147. <layout>default</layout>
  148. <releases>
  149. <enabled>true</enabled>
  150. <updatePolicy>never</updatePolicy>
  151. </releases>
  152. <snapshots>
  153. <enabled>true</enabled>
  154. <updatePolicy>never</updatePolicy>
  155. </snapshots>
  156. </repository>
  157. </repositories>
  158. </project>