/protocols/ss7/inap/pom.xml
XML | 59 lines | 50 code | 9 blank | 0 comment | 0 complexity | 4ce77fb59af80351155c36802245e60e 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 5 <parent> 6 <artifactId>ss7-parent</artifactId> 7 <groupId>org.mobicents.protocols.ss7</groupId> 8 <version>2.0.0-SNAPSHOT</version> 9 </parent> 10 11 12 <artifactId>inap-parent</artifactId> 13 <groupId>org.mobicents.protocols.ss7.inap</groupId> 14 15 <packaging>pom</packaging> 16 17 <name>Mobicents SS7 :: INAP :: Parent :: ${pom.artifactId}</name> 18 <properties></properties> 19 20 <modules> 21 <module>inap-api</module> 22 <module>inap-impl</module> 23 </modules> 24 25 <build> 26 <plugins> 27 <plugin> 28 <artifactId>maven-eclipse-plugin</artifactId> 29 <groupId>org.mobicents.tools</groupId> 30 <version> 31 ${mobicents.tools.mavenplugin.eclipse.version} 32 </version> 33 <inherited>false</inherited> 34 <executions /> 35 <configuration> 36 <classpathExcludes> 37 <exclude>xml-apis:xml-apis</exclude> 38 <exclude>jtidy:jtidy</exclude> 39 </classpathExcludes> 40 <resolveTransitiveDependencies> 41 true 42 </resolveTransitiveDependencies> 43 <eclipseProjectName> 44 mobicents-inap-stack 45 </eclipseProjectName> 46 </configuration> 47 </plugin> 48 </plugins> 49 </build> 50 51 <profiles> 52 <profile> 53 <id>release</id> 54 <modules> 55 <module>release</module> 56 </modules> 57 </profile> 58 </profiles> 59</project>