<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">
    <modelVersion>4.0.0</modelVersion>
  <parent>
      <groupId>com.github.livesense</groupId>
      <artifactId>org.liveSense.parent</artifactId>
      <version>1.0.5</version>
		<relativePath>..</relativePath>
  </parent>
  <version>1.0.5</version>

	<scm>
		<connection>scm:git:https://github.com/liveSense/org.liveSense.fragment.sun.misc.git</connection>
		<developerConnection>scm:git:https://github.com/liveSense/org.liveSense.fragment.sun.misc.git</developerConnection>
		<url>https://github.com/liveSense/org.liveSense.fragment.sun.misc</url>
	  <tag>1.0.5</tag>
  </scm>


    <artifactId>org.liveSense.fragment.sun.misc</artifactId>
    <packaging>jar</packaging>
    <name>liveSense :: Extension :: Sun misc</name>

    <description>
        This bundle extends the System Bundle export
        list with the sun.misc package such
        that OSGi bundles may refer to Sun's misc implementation
        without the OSGi framework itself to provide it in a
        non-portable way.
    </description>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <forceCreation>true</forceCreation>
                    <archive>
                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
                        <manifestEntries>
                            <Export-Package>sun.misc</Export-Package>
                        </manifestEntries>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <executions>
                    <execution>
                        <id>bundle-manifest</id>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>manifest</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <instructions>
                        <Bundle-Category>liveSense</Bundle-Category>
                        <Fragment-Host>system.bundle; extension:=framework</Fragment-Host>
                    </instructions>
                </configuration>
            </plugin>

        </plugins>
    </build>

</project>
