<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>ussd-example-parent</artifactId>
		<groupId>org.mobicents.examples.ussd</groupId>
		<version>1.0.0.BETA1</version>
	</parent>

	<artifactId>ussdexample-library</artifactId>
	<name>USSD : Example : ${pom.artifactId}</name>



	<dependencies>
		<!--  Compile time -->
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<scope>provided</scope>
		</dependency>
		<!-- Required as jars.  -->
		<dependency>
			<groupId>org.jbpm</groupId>
			<artifactId>jbpm-jpdl</artifactId>
		</dependency>
		<dependency>
			<groupId>org.mobicents.applications.ussd</groupId>
			<artifactId>ussdgateway-domain</artifactId>
			<version>${version.ussdgateway}</version>
		</dependency>
		<dependency>
			<groupId>org.mobicents.applications.ussd</groupId>
			<artifactId>ussdgateway-xml</artifactId>
			<version>${version.ussdgateway}</version>
		</dependency>



	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.mobicents.tools</groupId>
				<artifactId>maven-library-plugin</artifactId>
				<executions>
					<execution>
						<goals>
							<goal>copy-dependencies</goal>
							<goal>generate-descriptor</goal>
						</goals>
					</execution>
				</executions>
				<extensions>true</extensions>
				<configuration>
					<library-name>library-ussdexample</library-name>
					<library-vendor>org.mobicents</library-vendor>
					<library-version>1.0</library-version>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>
