/protocols/ss7/hardware/dahdi/java/pom.xml

http://mobicents.googlecode.com/ · XML · 62 lines · 49 code · 7 blank · 6 comment · 0 complexity · 9607e529ad245b3f5a491ffacc2edc4d 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>jar</packaging>
  5. <parent>
  6. <groupId>org.mobicents.protocols.ss7.hardware</groupId>
  7. <artifactId>mobicents-dahdi-parent</artifactId>
  8. <version>2.0.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>mobicents-dahdi</artifactId>
  11. <name>
  12. Mobicents SS7 :: Hardware :: ${pom.artifactId}
  13. </name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>javolution</groupId>
  17. <artifactId>javolution</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.mobicents.protocols.stream</groupId>
  21. <artifactId>stream</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.mobicents.protocols.ss7.management</groupId>
  25. <artifactId>linkset</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mobicents.protocols.ss7.mtp</groupId>
  29. <artifactId>mtp-api</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mobicents.protocols.ss7.mtp</groupId>
  33. <artifactId>mtp</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <finalName>mobicents-dahdi</finalName>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-surefire-plugin</artifactId>
  42. <version>2.4.2</version>
  43. <configuration>
  44. <forkMode>pertest</forkMode>
  45. <!-- So we dont have to juse xxxTest.java.bak "_" -->
  46. <!--
  47. <excludes> <exclude>**/TestCircle.java</exclude>
  48. <exclude>**/TestSquare.java</exclude> </excludes> <includes>
  49. <include>Sample.java</include> </includes>
  50. -->
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>