/protocols/ss7/sgw/boot/pom.xml

http://mobicents.googlecode.com/ · XML · 110 lines · 107 code · 3 blank · 0 comment · 0 complexity · bf25a8d13de5fc12ec8df40622d4855f 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. <groupId>org.mobicents.protocols.ss7.sgw</groupId>
  5. <artifactId>mobicents-sgw</artifactId>
  6. <version>2.0.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>boot</artifactId>
  9. <name>Mobicents SS7 :: SGW :: Boot :: ${pom.artifactId}</name>
  10. <dependencies>
  11. <dependency>
  12. <groupId>${pom.groupId}</groupId>
  13. <artifactId>gateway</artifactId>
  14. <version>${pom.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>log4j</groupId>
  18. <artifactId>log4j</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>urbanophile</groupId>
  22. <artifactId>java-getopt</artifactId>
  23. <version>1.0.9</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>junit</groupId>
  27. <artifactId>junit</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.jboss.microcontainer</groupId>
  31. <artifactId>jboss-dependency</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.jboss.microcontainer</groupId>
  35. <artifactId>jboss-kernel</artifactId>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <finalName>run</finalName>
  40. <plugins>
  41. <plugin>
  42. <groupId>org.apache.maven.plugins</groupId>
  43. <artifactId>maven-jar-plugin</artifactId>
  44. <configuration>
  45. <archive>
  46. <addMavenDescriptor>false</addMavenDescriptor>
  47. </archive>
  48. </configuration>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-assembly-plugin</artifactId>
  52. <configuration>
  53. <descriptors>
  54. <descriptor>
  55. src/main/assembly/pojo.xml
  56. </descriptor>
  57. </descriptors>
  58. <finalName>mobicents</finalName>
  59. </configuration>
  60. <executions>
  61. <execution>
  62. <phase>package</phase>
  63. <goals>
  64. <goal>directory-inline</goal>
  65. </goals>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-dependency-plugin</artifactId>
  72. <executions>
  73. <execution>
  74. <id>copy</id>
  75. <phase>package</phase>
  76. <goals>
  77. <goal>copy</goal>
  78. </goals>
  79. <configuration>
  80. <artifactItems>
  81. <artifactItem>
  82. <groupId>
  83. org.mobicents.protocols.ss7.hardware
  84. </groupId>
  85. <artifactId>
  86. libmobicents-dahdi-linux
  87. </artifactId>
  88. <version>
  89. ${pom.version}
  90. </version>
  91. <type>so</type>
  92. <overWrite>true</overWrite>
  93. <outputDirectory>
  94. ${project.build.directory}/mobicents-sgw/native
  95. </outputDirectory>
  96. <destFileName>
  97. libmobicents-dahdi-linux.so
  98. </destFileName>
  99. </artifactItem>
  100. </artifactItems>
  101. </configuration>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>