/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
- <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>
- <artifactId>isup-parent</artifactId>
- <groupId>org.mobicents.protocols.ss7.isup</groupId>
- <version>2.0.0-SNAPSHOT</version>
- </parent>
- <artifactId>isup-impl</artifactId>
- <name>Mobicents SS7 :: ISUP :: Impl :: ${pom.artifactId}</name>
-
- <dependencies>
- <!-- TESTs, req to enable concurrent! not used now -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
- <dependency>
- <groupId>org.testng</groupId>
- <artifactId>testng</artifactId>
- </dependency>
- <!-- other -->
- <dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- </dependency>
- <dependency>
- <groupId>${pom.groupId}</groupId>
- <artifactId>isup-api</artifactId>
- <version>${pom.version}</version>
- </dependency>
- <dependency>
- <groupId>concurrent</groupId>
- <artifactId>concurrent</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.mobicents.protocols.ss7.mtp</groupId>
- <artifactId>mtp-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.mobicents.protocols.ss7.mtp</groupId>
- <artifactId>mtp</artifactId>
- </dependency>
- <dependency>
- <artifactId>linkset</artifactId>
- <groupId>org.mobicents.protocols.ss7.management</groupId>
- </dependency>
- </dependencies>
- <build>
- <finalName>${pom.artifactId}-${pom.version}</finalName>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <suiteXmlFiles>
- <suiteXmlFile>testng-methods.xml</suiteXmlFile>
- <suiteXmlFile>testng-classes.xml</suiteXmlFile>
- </suiteXmlFiles>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>