<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.11</version>	
		<relativePath>../../../parent/pom.xml</relativePath>
	</parent>
	<artifactId>iPOJOAdaptee</artifactId>
	<packaging>bundle</packaging>

	<name>[iPOJO] Adaptee sample</name>
    <description>Sample of low device using iPOJO</description>
	
	<dependencies>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Export-Package>
								fr.velossity.sample.adaptee, 
								!fr.velossity.sample.adaptee.device.impl 
						</Export-Package>
						<Private-Package> fr.velossity.sample.adaptee.device.impl 
						</Private-Package>
					</instructions>
				</configuration>
			</plugin>
			<plugin>
					<groupId>org.apache.felix</groupId>
					<artifactId>maven-ipojo-plugin</artifactId>
			</plugin>
		</plugins>
	</build>
</project>