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

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