/protocols/jain-megaco/pom.xml

http://mobicents.googlecode.com/ · XML · 130 lines · 119 code · 10 blank · 1 comment · 0 complexity · c70ea05199683af83027f1f60500847a 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. <parent>
  4. <groupId>org.mobicents</groupId>
  5. <artifactId>mobicents-parent</artifactId>
  6. <version>2.2-SNAPSHOT</version>
  7. </parent>
  8. <groupId>org.mobicents.protocols.megaco</groupId>
  9. <artifactId>megaco-parent</artifactId>
  10. <version>1.0.00B-SNAPSHOT</version>
  11. <packaging>pom</packaging>
  12. <name>Mobicents MEGACO Stack :: ${pom.artifactId}</name>
  13. <properties>
  14. <maven.test.skip>true</maven.test.skip>
  15. <release.name>
  16. ${release.name.prefix}${parent.version}${release.name.suffix}
  17. </release.name>
  18. </properties>
  19. <modules>
  20. <module>megaco-api</module>
  21. <module>megaco-impl</module>
  22. </modules>
  23. <developers>
  24. <developer>
  25. <id>oleg.kulikoff</id>
  26. <name>Oleg Kulikoff</name>
  27. <email>oleg.kulikoff@gmail.com</email>
  28. <organization>JBoss/Red Hat</organization>
  29. <organizationUrl>http://www.redhat.com/</organizationUrl>
  30. <roles>
  31. <role>Active Developer</role>
  32. </roles>
  33. <timezone>+3</timezone>
  34. </developer>
  35. <developer>
  36. <id>amit.bhayani</id>
  37. <name>Amit Bhayani</name>
  38. <email>amit.bhayani@gmail.com</email>
  39. <organization>JBoss/Red Hat</organization>
  40. <organizationUrl>http://www.redhat.com/</organizationUrl>
  41. <roles>
  42. <role>Active Developer</role>
  43. </roles>
  44. <timezone>+5.5</timezone>
  45. </developer>
  46. <developer>
  47. <id>baranowb</id>
  48. <name>Bartosz Baranowski</name>
  49. <email>baranowb@gmail.com</email>
  50. <organization>JBoss/Red Hat</organization>
  51. <organizationUrl>http://www.redhat.com/</organizationUrl>
  52. <roles>
  53. <role>Active Developer</role>
  54. </roles>
  55. <timezone>+1</timezone>
  56. </developer>
  57. </developers>
  58. <licenses>
  59. <license>
  60. <name>GNU GENERAL PUBLIC LICENSE</name>
  61. <url>http://www.gnu.org/licenses/gpl.html</url>
  62. <distribution>repo</distribution>
  63. </license>
  64. </licenses>
  65. <profiles>
  66. <profile>
  67. <id>maven-release</id>
  68. <modules>
  69. <module>megaco-api</module>
  70. <module>megaco-impl</module>
  71. </modules>
  72. </profile>
  73. </profiles>
  74. <scm>
  75. <connection>
  76. scm:svn:https://mobicents.googlecode.com/svn/trunk/servers/media
  77. </connection>
  78. <developerConnection>
  79. scm:svn:https://mobicents.googlecode.com/svn/trunk/servers/media
  80. </developerConnection>
  81. <url>http://mobicents.googlecode.com/svn/trunk</url>
  82. </scm>
  83. <!-- -->
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <artifactId>maven-eclipse-plugin</artifactId>
  88. <groupId>org.mobicents.tools</groupId>
  89. <version>
  90. ${mobicents.tools.mavenplugin.eclipse.version}
  91. </version>
  92. <inherited>false</inherited>
  93. <executions />
  94. <configuration>
  95. <classpathExcludes>
  96. <exclude>xml-apis:xml-apis</exclude>
  97. <exclude>jtidy:jtidy</exclude>
  98. </classpathExcludes>
  99. <resolveTransitiveDependencies>
  100. true
  101. </resolveTransitiveDependencies>
  102. <eclipseProjectName>
  103. mobicents-jain-megaco-stack
  104. </eclipseProjectName>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-release-plugin</artifactId>
  110. <configuration>
  111. <autoVersionSubmodules>true</autoVersionSubmodules>
  112. <resume>false</resume>
  113. <tagBase>
  114. https://mobicents.googlecode.com/svn/tags/servers/media/core
  115. </tagBase>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>