/protocols/ss7/mtp/pom.xml
http://mobicents.googlecode.com/ · XML · 61 lines · 57 code · 4 blank · 0 comment · 0 complexity · a5c9295ee3f01188312b517b6339d578 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>ss7-parent</artifactId>
- <groupId>org.mobicents.protocols.ss7</groupId>
- <version>2.0.0-SNAPSHOT</version>
- </parent>
- <groupId>org.mobicents.protocols.ss7.mtp</groupId>
- <artifactId>mtp-parent</artifactId>
- <name>Mobicents SS7 :: MTP :: Parent :: ${pom.artifactId}</name>
- <packaging>pom</packaging>
- <modules>
- <module>mtp-api</module>
- <module>mtp-impl</module>
- </modules>
- <build>
- <finalName>${pom.artifactId}-${pom.version}</finalName>
- <plugins>
- <plugin>
- <artifactId>maven-eclipse-plugin</artifactId>
- <groupId>org.mobicents.tools</groupId>
- <version>
- ${mobicents.tools.mavenplugin.eclipse.version}
- </version>
- <inherited>false</inherited>
- <executions />
- <configuration>
- <classpathExcludes>
- <exclude>xml-apis:xml-apis</exclude>
- <exclude>jtidy:jtidy</exclude>
- </classpathExcludes>
- <resolveTransitiveDependencies>
- true
- </resolveTransitiveDependencies>
- <eclipseProjectName>
- mobicents-mtp-stack
- </eclipseProjectName>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <systemProperties>
- <property>
- <name>file.name</name>
- <value>target/log4j.log</value>
- </property>
- </systemProperties>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>