/protocols/ss7/hardware/pom.xml

http://mobicents.googlecode.com/ · XML · 83 lines · 68 code · 9 blank · 6 comment · 0 complexity · 72b53facc512ec3356699784330b3046 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.hardware</groupId>
  9. <artifactId>mobicents-hardware</artifactId>
  10. <name>
  11. Mobicents SS7 :: Hardware :: Parent :: ${pom.artifactId}
  12. </name>
  13. <packaging>pom</packaging>
  14. <properties>
  15. </properties>
  16. <modules>
  17. <!--
  18. <module>dahdi</module>
  19. -->
  20. <module>dialogic</module>
  21. </modules>
  22. <profiles>
  23. <profile>
  24. <id>maven-release</id>
  25. <modules>
  26. <!--
  27. <module>dahdi</module>
  28. -->
  29. <module>dialogic</module>
  30. </modules>
  31. </profile>
  32. </profiles>
  33. <build>
  34. <finalName>${pom.artifactId}-${pom.version}</finalName>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-eclipse-plugin</artifactId>
  38. <groupId>org.mobicents.tools</groupId>
  39. <version>
  40. ${mobicents.tools.mavenplugin.eclipse.version}
  41. </version>
  42. <inherited>false</inherited>
  43. <executions />
  44. <configuration>
  45. <classpathExcludes>
  46. <exclude>xml-apis:xml-apis</exclude>
  47. <exclude>jtidy:jtidy</exclude>
  48. </classpathExcludes>
  49. <resolveTransitiveDependencies>
  50. true
  51. </resolveTransitiveDependencies>
  52. <eclipseProjectName>
  53. mobicents-ss7-hardware
  54. </eclipseProjectName>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-surefire-plugin</artifactId>
  60. <configuration>
  61. <systemProperties>
  62. <property>
  63. <name>file.name</name>
  64. <value>target/log4j.log</value>
  65. </property>
  66. </systemProperties>
  67. <includes>
  68. <include>**/*Test.java</include>
  69. </includes>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>