<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>
	<parent>
		<groupId>fr.velossity.osgi</groupId>
		<artifactId>patterns.parent</artifactId>
		<version>1.0.14</version>
		<relativePath>../../../parent/pom.xml</relativePath>
	</parent>
	<artifactId>ServiceAPI4WBStep4</artifactId>
    <packaging>bundle</packaging>

	<name>[ServiceDeployment] Service API</name>
    <description>Sample API</description>	
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Export-Package>
							fr.velossity.sample.device;version=0.0.1,
							fr.velossity.sample.device.eventing;version=0.0.1
						</Export-Package>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>