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