<?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/xsd/maven-4.0.0.xsd">

    <!--

        Licensed to the Apache Software Foundation (ASF) under one or more
        contributor license agreements.  See the NOTICE file distributed with
        this work for additional information regarding copyright ownership.
        The ASF licenses this file to You under the Apache License, Version 2.0
        (the "License"); you may not use this file except in compliance with
        the License.  You may obtain a copy of the License at

           http://www.apache.org/licenses/LICENSE-2.0

        Unless required by applicable law or agreed to in writing, software
        distributed under the License is distributed on an "AS IS" BASIS,
        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        See the License for the specific language governing permissions and
        limitations under the License.
    -->

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.apache.karaf.shell</groupId>
        <artifactId>shell</artifactId>
        <version>4.4.6</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>org.apache.karaf.shell.console</artifactId>
    <packaging>bundle</packaging>
    <name>Apache Karaf :: Shell :: Console</name>
    <description>This bundle provides compatibility with the previous console.</description>

    <properties>
        <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.apache.karaf</groupId>
                <artifactId>karaf-bom</artifactId>
                <version>${project.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>osgi.core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.service.cm</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jline</groupId>
            <artifactId>jline</artifactId>
        </dependency>
        <dependency>
            <groupId>org.fusesource.jansi</groupId>
            <artifactId>jansi</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.karaf.jaas</groupId>
            <artifactId>org.apache.karaf.jaas.modules</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.karaf.jaas</groupId>
            <artifactId>org.apache.karaf.jaas.boot</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.karaf.shell</groupId>
            <artifactId>org.apache.karaf.shell.core</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.karaf</groupId>
            <artifactId>org.apache.karaf.util</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.aries.blueprint</groupId>
            <artifactId>org.apache.aries.blueprint.api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.aries.blueprint</groupId>
            <artifactId>org.apache.aries.blueprint.core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.apache.felix.gogo.runtime</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.felix</groupId>
            <artifactId>org.apache.felix.utils</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.sshd</groupId>
            <artifactId>sshd-osgi</artifactId>
        </dependency>
    </dependencies>

    <build>
        <resources>
            <resource>
                <directory>${project.basedir}/../../client/src/main/key</directory>
                <filtering>false</filtering>
            </resource>
            <resource>
                <directory>${project.basedir}/src/main/resources</directory>
                <includes>
                    <include>**/*</include>
                </includes>
            </resource>
            <resource>
                <directory>${project.basedir}/src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/*.info</include>
                </includes>
            </resource>
            <resource>
                <directory>${project.basedir}/src/main/filtered-resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/*</include>
                </includes>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <configuration>
                    <mainClass>Main</mainClass>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Fragment-Host>
                            org.apache.karaf.shell.core
                        </Fragment-Host>
                        <Import-Package>
                            !org.apache.felix.gogo.*,
                            !org.apache.karaf.shell.inject.impl,
                            org.osgi.service.event;resolution:=optional,
                            org.apache.karaf.branding;resolution:=optional,
                            org.apache.sshd.agent*;resolution:=optional,
                            org.osgi.framework;version="[1,3)",
                            *
                        </Import-Package>
                        <Export-Package>
                        	org.apache.karaf.shell.commands;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.commands;version=2.3.0;-noimport:=true,
                            org.apache.karaf.shell.commands.basic;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.commands.basic;version=2.3.0;-noimport:=true,
                            org.apache.karaf.shell.commands.converter;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.commands.converter;version=2.3.0;-noimport:=true,
                            org.apache.karaf.shell.commands.meta;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.commands.meta;version=2.3.0;-noimport:=true,
                        	org.apache.karaf.shell.console;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.console;version=2.3.0;-noimport:=true,
                        	org.apache.karaf.shell.console.commands;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.console.commands;version=2.3.0;-noimport:=true,
                        	org.apache.karaf.shell.console.completer;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.console.completer;version=2.3.0;-noimport:=true,
                            org.apache.karaf.shell.console.factory;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.inject;version=${project.version};-noimport:=true,
                        	org.apache.karaf.shell.util;version=${project.version};-noimport:=true,
                            org.apache.karaf.shell.util;version=2.3.0;-noimport:=true,
                            org.apache.felix.gogo.api;version=0.17.0;status=provisional;-noimport:=true,
                            org.apache.felix.gogo.commands.*;version=0.17.0;-noimport:=true,
                            org.apache.felix.service.command;version=0.17.0;status=provisional;-noimport:=true,
                            org.apache.felix.service.threadio;version=0.17.0;status=provisional;-noimport:=true,
                            jline.console.completer;version=2.14;-noimport:=true
                        </Export-Package>
                        <Private-Package>
                        	org.apache.karaf.shell.commands.ansi,
                            org.apache.karaf.shell.compat,
                        	org.apache.karaf.shell.console.impl*,
                            org.apache.karaf.shell.security.impl*,
                            org.apache.karaf.shell.inject.impl*,
                            org.apache.karaf.util.jaas,
                            jline.internal
                        </Private-Package>
                        <Main-Class>
                            org.apache.karaf.shell.console.impl.Main
                        </Main-Class>
                        <!--
                           - Work around for KARAF-5180 / FELIX-5649
                          -->
                        <_removeheaders>
                            Require-Capability
                        </_removeheaders>
                    </instructions>
                    <unpackBundle>true</unpackBundle>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>
