<?xml version="1.0" encoding="UTF-8"?>
<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">

	<parent>
		<groupId>at.crea-doo.homer</groupId>
		<artifactId>shell</artifactId>
		<version>1.0.11</version>
		<relativePath>../</relativePath>
	</parent>

	<modelVersion>4.0.0</modelVersion>

	<artifactId>shell.flat.export.processor</artifactId>
	<packaging>bundle</packaging>
	<name>HOMER - Shell - Flat Export Processor</name>
	<description />

	<dependencies>
		<dependency>
			<groupId>at.ac.ait.hbs.homer</groupId>
			<artifactId>at.ac.ait.hbs.homer.core.common</artifactId>
		</dependency>
		<dependency>
			<groupId>at.ac.ait.hbs.homer</groupId>
			<artifactId>at.ac.ait.hbs.homer.core.system</artifactId>
			<version>${homer.core.version}</version>
		</dependency>

		<!-- Apache Karaf -->
		<dependency>
			<groupId>org.apache.karaf.shell</groupId>
			<artifactId>org.apache.karaf.shell.core</artifactId>
			<optional>true</optional>
		</dependency>
		<!-- /Apache Karaf -->

		<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<finalName>${project.artifactId}</finalName>
		<plugins>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<extensions>true</extensions>
				<configuration>
					<instructions>
						<Karaf-Commands>*</Karaf-Commands>
						<Import-Package>
							*
						</Import-Package>
						<Private-Package>
							at.creadoo.homer.shell.flat.export.processor.commands
						</Private-Package>
						<Export-Package>
						</Export-Package>
						<Embed-Dependency>
						</Embed-Dependency>
					</instructions>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>
