/protocols/ss7/isup/isup-impl/pom.xml

http://mobicents.googlecode.com/ · XML · 69 lines · 61 code · 6 blank · 2 comment · 0 complexity · 1a93db20d229cea65af85628c030e8b5 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>isup-parent</artifactId>
  5. <groupId>org.mobicents.protocols.ss7.isup</groupId>
  6. <version>2.0.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>isup-impl</artifactId>
  9. <name>Mobicents SS7 :: ISUP :: Impl :: ${pom.artifactId}</name>
  10. <dependencies>
  11. <!-- TESTs, req to enable concurrent! not used now -->
  12. <dependency>
  13. <groupId>junit</groupId>
  14. <artifactId>junit</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.testng</groupId>
  18. <artifactId>testng</artifactId>
  19. </dependency>
  20. <!-- other -->
  21. <dependency>
  22. <groupId>log4j</groupId>
  23. <artifactId>log4j</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>${pom.groupId}</groupId>
  27. <artifactId>isup-api</artifactId>
  28. <version>${pom.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>concurrent</groupId>
  32. <artifactId>concurrent</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.mobicents.protocols.ss7.mtp</groupId>
  37. <artifactId>mtp-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mobicents.protocols.ss7.mtp</groupId>
  41. <artifactId>mtp</artifactId>
  42. </dependency>
  43. <dependency>
  44. <artifactId>linkset</artifactId>
  45. <groupId>org.mobicents.protocols.ss7.management</groupId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <finalName>${pom.artifactId}-${pom.version}</finalName>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-surefire-plugin</artifactId>
  54. <configuration>
  55. <suiteXmlFiles>
  56. <suiteXmlFile>testng-methods.xml</suiteXmlFile>
  57. <suiteXmlFile>testng-classes.xml</suiteXmlFile>
  58. </suiteXmlFiles>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>