<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         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>
    <!-- mvn:com.baeldung/osgi-intro-sample-client/1.0-SNAPSHOT -->
    <artifactId>osgi-intro-sample-client</artifactId>
    <name>osgi-intro-sample-client</name>
    <packaging>bundle</packaging>

    <parent>
        <groupId>com.baeldung</groupId>
        <artifactId>osgi</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>com.baeldung</groupId>
            <artifactId>osgi-intro-sample-service</artifactId>
            <version>${osgi-intro-sample-service.version}</version>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
                        <Bundle-Name>${project.artifactId}</Bundle-Name>
                        <Bundle-Version>${project.version}</Bundle-Version>
                        <Bundle-Activator>com.baeldung.osgi.sample.client.Client</Bundle-Activator>

                        <Private-Package>com.baeldung.osgi.sample.client</Private-Package>

                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <properties>
        <osgi-intro-sample-service.version>1.0-SNAPSHOT</osgi-intro-sample-service.version>
    </properties>

</project>