/protocols/ss7/m3ua/impl/pom.xml

http://mobicents.googlecode.com/ · XML · 107 lines · 95 code · 8 blank · 4 comment · 0 complexity · cc3b9a7a8f81caacd8a834755f6fb09f MD5 · raw file

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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. <parent>
  5. <artifactId>m3ua</artifactId>
  6. <groupId>org.mobicents.protocols.ss7.m3ua</groupId>
  7. <version>2.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>m3ua-impl</artifactId>
  10. <name>Mobicents SS7 :: M3UA :: Impl :: ${pom.artifactId}</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.mobicents.commons</groupId>
  14. <artifactId>commons</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>log4j</groupId>
  18. <artifactId>log4j</artifactId>
  19. <scope>provided</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.testng</groupId>
  23. <artifactId>testng</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.mobicents.protocols.ss7.m3ua</groupId>
  27. <artifactId>m3ua-api</artifactId>
  28. <version>${pom.version}</version>
  29. </dependency>
  30. <!-- shell -->
  31. <dependency>
  32. <groupId>org.mobicents.protocols.ss7.management</groupId>
  33. <artifactId>shell</artifactId>
  34. </dependency>
  35. <!-- javolution -->
  36. <dependency>
  37. <groupId>javolution</groupId>
  38. <artifactId>javolution</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mobicents.protocols.ss7.mtp</groupId>
  42. <artifactId>mtp</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mobicents.protocols.sctp</groupId>
  46. <artifactId>sctp-api</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.mobicents.protocols.sctp</groupId>
  50. <artifactId>sctp-impl</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <finalName>${pom.artifactId}-${pom.version}</finalName>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-surefire-plugin</artifactId>
  60. <configuration>
  61. <suiteXmlFiles>
  62. <suiteXmlFile>testng-methods.xml</suiteXmlFile>
  63. <suiteXmlFile>testng-classes.xml</suiteXmlFile>
  64. </suiteXmlFiles>
  65. </configuration>
  66. </plugin>
  67. <plugin>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <version>2.3</version>
  71. <configuration>
  72. <source>1.7</source>
  73. <target>1.7</target>
  74. <compilerArgument>
  75. -XDignore.symbol.file=true
  76. </compilerArgument>
  77. </configuration>
  78. </plugin>
  79. <plugin>
  80. <artifactId>maven-clean-plugin</artifactId>
  81. <configuration>
  82. <filesets>
  83. <fileset>
  84. <directory>.</directory>
  85. <includes>
  86. <include>*_m3ua.xml</include>
  87. <include>*_sctp.xml</include>
  88. <include>debuglog.txt</include>
  89. </includes>
  90. <!-- <excludes> <exclude>**/important.log</exclude> <exclude>**/another-important.log</exclude>
  91. </excludes> -->
  92. <followSymlinks>false</followSymlinks>
  93. </fileset>
  94. </filesets>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>