Added OSGi headers.

Added dummy readme.
This commit is contained in:
Chris Custine 2011-05-23 02:30:08 -06:00
parent e191018c32
commit e2ab6bc791
1 changed files with 15 additions and 0 deletions

View File

@ -30,6 +30,7 @@
<relativePath>../project/pom.xml</relativePath>
</parent>
<artifactId>jclouds-chef</artifactId>
<packaging>bundle</packaging>
<name>JClouds Chef :: Core</name>
<description>jclouds components to access Chef</description>
@ -111,6 +112,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Export-Package>
org.jclouds.chef.*;version="${project.version}",
org.jclouds.ohai.*;version="${project.version}"
</Export-Package>
<Import-Package>org.jclouds.*;version="${jclouds.version}",*</Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>