<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>
		<groupId>org.mobicents</groupId>
		<artifactId>mobicents-jainslee-server</artifactId>
		<version>1.2.7.GA</version>
		<relativePath>../../pom.xml</relativePath>
	</parent>

	<artifactId>mobicents-tools-cli</artifactId>
	<groupId>org.mobicents.tools</groupId>
	<name>Mobicents :: Tools :: mobicents-tools-cli</name>
	
	<dependencies>
		<dependency>
			<groupId>org.mobicents.core</groupId>
			<artifactId>mobicents-core-jar</artifactId>
			<version>${pom.version}</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifest>
							<addClasspath>true</addClasspath>
							<mainClass>
								org.mobicents.slee.cli.MobicentsCLI
							</mainClass>
						</manifest>
						<manifestEntries>
							<url>${pom.url}</url>
						</manifestEntries>
					</archive>
				</configuration>
			</plugin>

		</plugins>
	</build>

</project>