<!--

    Copyright (C) 2010 FuseSource, Corp. All rights reserved.
    http://fusesource.com

    The software in this package is published under the terms of the AGPL license
    a copy of which has been included with this distribution in the license.txt file.

-->

<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>org.fusesource.rider</groupId>
    <artifactId>project</artifactId>
    <version>2.0.2</version>
    <relativePath>..</relativePath>
  </parent>

  <artifactId>org.fusesource.sun.tools.attach</artifactId>

  <name>Rider :: Sun Tools Attach</name>
  <description>Rider Sun Tools Attach</description>
  <!--
  <packaging>bundle</packaging>
  -->
  
  <prerequisites>
    <maven>2.0.9</maven>
  </prerequisites>

  <build>
    <plugins>
      <!--
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Bundle-Version>${project.version}</Bundle-Version>
 	    <Bundle-SymbolicName>org.fusesource.sun.tools.attach</Bundle-SymbolicName>
            <Fragment-Host>system.bundle; extension:=framework</Fragment-Host>
            <Bundle-Name>FuseSource Sun Tools Attach Framework Extension</Bundle-Name>
            <Bundle-Description>Exporting Sun Tools Attach API to OSGi</Bundle-Description>
            <Export-Package>com.sun.tools.attach</Export-Package>
          </instructions>
        </configuration>
      </plugin>
-->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestEntries>
              <Manifest-Version>1.0</Manifest-Version>
              <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
              <Bundle-Name>FuseSource Sun Tools Attach Framework Extension</Bundle-Name>
              <Bundle-SymbolicName>org.fusesource.sun.tools.attach</Bundle-SymbolicName>
              <Bundle-Version>1.0.5</Bundle-Version>
              <Bundle-Vendor>FuseSource.com</Bundle-Vendor>
              <Bundle-RequiredExecutionEnvironment>JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
              <Fragment-Host>system.bundle; extension:=framework</Fragment-Host>
              <Bundle-Description>Exporting Sun Tools Attach API to OSGi</Bundle-Description>
              <Export-Package>com.sun.tools.attach</Export-Package>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
