/protocols/ss7/inap/inap-api/pom.xml
XML | 44 lines | 37 code | 5 blank | 2 comment | 0 complexity | 049b48c10f4cfa1da425ab5a06b75121 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 4 <parent> 5 <artifactId>inap-parent</artifactId> 6 <groupId>org.mobicents.protocols.ss7.inap</groupId> 7 <version>2.0.0-SNAPSHOT</version> 8 </parent> 9 10 <artifactId>inap-api</artifactId> 11 12 <name>Mobicents SS7 :: INAP :: Api :: ${pom.artifactId}</name> 13 14 <dependencies> 15 <!-- <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> 16 <version>${log4j.version}</version> </dependency> --> 17 <dependency> 18 <groupId>junit</groupId> 19 <artifactId>junit</artifactId> 20 <scope>provided</scope> 21 <version>${junit.version}</version> 22 </dependency> 23 <dependency> 24 <groupId>org.mobicents.protocols.ss7.tcap</groupId> 25 <artifactId>tcap-api</artifactId> 26 </dependency> 27 <dependency> 28 <groupId>org.mobicents.protocols.ss7.sccp</groupId> 29 <artifactId>sccp-api</artifactId> 30 </dependency> 31 <dependency> 32 <groupId>org.mobicents.protocols.asn</groupId> 33 <artifactId>asn</artifactId> 34 </dependency> 35 <dependency> 36 <groupId>org.mobicents.protocols.ss7.isup</groupId> 37 <artifactId>isup-api</artifactId> 38 </dependency> 39 </dependencies> 40 41 <build> 42 <finalName>${pom.artifactId}-${pom.version}</finalName> 43 </build> 44</project>