/protocols/ss7/isup/pom.xml

http://mobicents.googlecode.com/ · XML · 60 lines · 49 code · 10 blank · 1 comment · 0 complexity · 2f911eaed25c09a5aed515d05071739b 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. <artifactId>ss7-parent</artifactId>
  5. <groupId>org.mobicents.protocols.ss7</groupId>
  6. <version>2.0.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>isup-parent</artifactId>
  9. <groupId>org.mobicents.protocols.ss7.isup</groupId>
  10. <packaging>pom</packaging>
  11. <name>Mobicents SS7 :: ISUP :: Parent :: ${pom.artifactId}</name>
  12. <modules>
  13. <module>isup-api</module>
  14. <module>isup-impl</module>
  15. </modules>
  16. <!-- -->
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <artifactId>maven-eclipse-plugin</artifactId>
  21. <groupId>org.mobicents.tools</groupId>
  22. <version>
  23. ${mobicents.tools.mavenplugin.eclipse.version}
  24. </version>
  25. <inherited>false</inherited>
  26. <executions />
  27. <configuration>
  28. <classpathExcludes>
  29. <exclude>xml-apis:xml-apis</exclude>
  30. <exclude>jtidy:jtidy</exclude>
  31. </classpathExcludes>
  32. <resolveTransitiveDependencies>
  33. true
  34. </resolveTransitiveDependencies>
  35. <eclipseProjectName>
  36. mobicents-isup-stack
  37. </eclipseProjectName>
  38. </configuration>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. <profiles>
  43. <profile>
  44. <id>release</id>
  45. <modules>
  46. <module>release</module>
  47. </modules>
  48. </profile>
  49. </profiles>
  50. </project>