/protocols/ss7/mtp/pom.xml

http://mobicents.googlecode.com/ · XML · 61 lines · 57 code · 4 blank · 0 comment · 0 complexity · a5c9295ee3f01188312b517b6339d578 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. <groupId>org.mobicents.protocols.ss7.mtp</groupId>
  9. <artifactId>mtp-parent</artifactId>
  10. <name>Mobicents SS7 :: MTP :: Parent :: ${pom.artifactId}</name>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>mtp-api</module>
  14. <module>mtp-impl</module>
  15. </modules>
  16. <build>
  17. <finalName>${pom.artifactId}-${pom.version}</finalName>
  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-mtp-stack
  37. </eclipseProjectName>
  38. </configuration>
  39. </plugin>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-surefire-plugin</artifactId>
  43. <configuration>
  44. <systemProperties>
  45. <property>
  46. <name>file.name</name>
  47. <value>target/log4j.log</value>
  48. </property>
  49. </systemProperties>
  50. <includes>
  51. <include>**/*Test.java</include>
  52. </includes>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>