<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>mobicents-slee-ra-xcap-client</artifactId>
		<groupId>org.mobicents.resources</groupId>
		<version>2.2.0.FINAL</version>
	</parent>
	
	<artifactId>mobicents-slee-ra-xcap-client-library</artifactId>
		
	<dependencies>
		<dependency>
			<groupId>org.mobicents</groupId>
			<artifactId>xcap-client-api</artifactId>
			<version>${pom.version}</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.0.2</version>
		</dependency>
		<dependency>
	   		<groupId>org.apache.httpcomponents</groupId>
  			<artifactId>httpcore</artifactId>  	
    		<version>4.0.1</version>
		</dependency>
		<dependency>
			<groupId>commons-codec</groupId>
			<artifactId>commons-codec</artifactId>
			<version>1.3</version>
		</dependency>
		<dependency>
	   		<groupId>commons-logging</groupId>
  			<artifactId>commons-logging</artifactId>  	
    		<version>1.1.1</version>
		</dependency>
	</dependencies>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.mobicents.tools</groupId>
				<artifactId>maven-library-plugin</artifactId>
				<extensions>true</extensions>
                <executions>
					<execution>
						<phase>generate-resources</phase>
						<goals>
							<goal>create</goal>
						</goals>
					</execution>
				</executions>
                <configuration>
					<library-name>xcap-client-library</library-name>
					<library-vendor>org.mobicents.resources</library-vendor>
					<library-version>2.0</library-version>
				</configuration>
			</plugin>
		</plugins>
	</build>
	
</project>