/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
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.mobicents.protocols.ss7.sgw</groupId>
- <artifactId>mobicents-sgw</artifactId>
- <version>2.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>boot</artifactId>
- <name>Mobicents SS7 :: SGW :: Boot :: ${pom.artifactId}</name>
- <dependencies>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>gateway</artifactId>
- <version>${pom.version}</version>
- </dependency>
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- </dependency>
- <dependency>
- <groupId>urbanophile</groupId>
- <artifactId>java-getopt</artifactId>
- <version>1.0.9</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-dependency</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jboss.microcontainer</groupId>
- <artifactId>jboss-kernel</artifactId>
- </dependency>
- </dependencies>
- <build>
- <finalName>run</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <addMavenDescriptor>false</addMavenDescriptor>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>
- src/main/assembly/pojo.xml
- </descriptor>
- </descriptors>
- <finalName>mobicents</finalName>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>directory-inline</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy</id>
- <phase>package</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>
- org.mobicents.protocols.ss7.hardware
- </groupId>
- <artifactId>
- libmobicents-dahdi-linux
- </artifactId>
- <version>
- ${pom.version}
- </version>
- <type>so</type>
- <overWrite>true</overWrite>
- <outputDirectory>
- ${project.build.directory}/mobicents-sgw/native
- </outputDirectory>
- <destFileName>
- libmobicents-dahdi-linux.so
- </destFileName>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>