<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>remote-slee-connection</artifactId>
		<groupId>org.mobicents.servers.jainslee.tools</groupId>
		<version>2.2.0.FINAL</version>
	</parent>

	<artifactId>remote-slee-connection-rar</artifactId>
		
	<dependencies>
		<!--
			deps are not "provided" since JCA RA runs on remote, RMI requries
			those classes :)
		-->
		<dependency>
			<groupId>org.mobicents.servers.jainslee.core</groupId>
			<artifactId>remote</artifactId>
			<version>${mobicents.slee.version}</version>

		</dependency>
		<dependency>
			<groupId>org.mobicents.servers.jainslee.core</groupId>
			<artifactId>activities</artifactId>
			<version>${mobicents.slee.version}</version>
		</dependency>
		<dependency>
			<groupId>org.mobicents.servers.jainslee.core</groupId>
			<artifactId>spi</artifactId>
			<version>${mobicents.slee.version}</version>
		</dependency>

		<dependency>
			<groupId>javax.slee</groupId>
			<artifactId>jain-slee</artifactId>
		</dependency>
	</dependencies>

	<build>
		<finalName>mobicents-slee-remote-connection.rar</finalName>
		<plugins>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<configuration>
					<descriptors>
						<descriptor>
							src/main/assemble/descriptor.xml
							</descriptor>
					</descriptors>
				</configuration>
				<executions>
					<execution>
						<id>make-assembly</id>
						<phase>package</phase>
						<goals>
							<goal>directory-single</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

</project>
