<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>
	
	<packaging>jainslee-library</packaging>
	
	<parent>
		<artifactId>mobicents-slee-example-sip-services</artifactId>
		<groupId>org.mobicents.examples</groupId>
		<version>2.2.0.FINAL</version>
	</parent>
	
	<artifactId>sip-services-library</artifactId>
		
	<dependencies>
		<dependency>
			<artifactId>sip-services-common</artifactId>
			<groupId>${pom.groupId}</groupId>
			<version>${pom.version}</version>
		</dependency>
		<dependency>
			<artifactId>sip-services-location-service</artifactId>
			<groupId>${pom.groupId}</groupId>
			<version>${pom.version}</version>
		</dependency>
		<dependency>
			<artifactId>sip-services-location-service-jpa</artifactId>
			<groupId>${pom.groupId}</groupId>
			<version>${pom.version}</version>
		</dependency>
		<dependency>
			<artifactId>sip-services-location-service-nonha</artifactId>
			<groupId>${pom.groupId}</groupId>
			<version>${pom.version}</version>
		</dependency>
		<!-- this lib components depends on sip ra lib -->
		<dependency>
			<artifactId>sip11-library</artifactId>
			<groupId>org.mobicents.resources</groupId>
			<version>${mobicents.resources.sip11.version}</version>
			<scope>runtime</scope>
		</dependency>
	</dependencies>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.mobicents.tools</groupId>
				<artifactId>maven-library-plugin</artifactId>
				<version>${mobicents.tools.mavenplugin.library.version}</version>
				<extensions>true</extensions>
				<configuration>
					<library-name>sip-services-library</library-name>
					<library-vendor>org.mobicents</library-vendor>
					<library-version>1.2</library-version>
				</configuration>
			</plugin>
		</plugins>
	</build>
	
</project>