<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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>

	<groupId>se.scalablesolutions.akka</groupId>
	<artifactId>se.scalablesolutions.akka.actor.bundle</artifactId>
	<version>1.1.3</version>
	<packaging>bundle</packaging>

	<parent>
		<groupId>org.jowidgets.thirdparty</groupId>
		<artifactId>org.jowidgets.thirdparty.bundles.parent</artifactId>
		<version>0.0.1</version>
		<relativePath>../parent/pom.xml</relativePath>
	</parent>
	
	<repositories>
		<repository>
			<id>akka</id>
			<url>http://repo.akka.io/releases/</url>
		</repository>
	</repositories>
	
	<dependencies>
		<dependency>
			<groupId>se.scalablesolutions.akka</groupId>
			<artifactId>akka-actor</artifactId>
			<version>1.1.3</version>
		</dependency>
	</dependencies>
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<configuration>
					<instructions>
						<Export-Package>*</Export-Package>
						<Embed-Dependency>akka-actor;inline=true</Embed-Dependency>
						<Embed-Transitive>true</Embed-Transitive>
						<version>1.1.3</version>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>