pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <parent>
  4. <groupId>no.steria.osgi.jsr330activator.gogoshell.build</groupId>
  5. <artifactId>shared-plugin-settings</artifactId>
  6. <version>1.1.1-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>wrapper-bundle-settings</artifactId>
  10. <name>jsr330activator.gogoshell - wrapper instructions</name>
  11. <!--
  12. | don't apply project details to wrapped jars
  13. -->
  14. <organization />
  15. <description>
  16. Simple OSGi wrapper around third-party jar(s)
  17. </description>
  18. <licenses>
  19. <license />
  20. </licenses>
  21. <packaging>pom</packaging>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <!--
  26. | the following instructions are optimized for wrapping third-party libraries as OSGi bundles
  27. -->
  28. <groupId>org.apache.felix</groupId>
  29. <artifactId>maven-bundle-plugin</artifactId>
  30. <configuration>
  31. <instructions>
  32. <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
  33. <Bundle-Version>${wrapped.version}</Bundle-Version>
  34. <!--
  35. | export wrapped contents: don't use Export-Package:* as this bundles everything on the classpath
  36. -->
  37. <_exportcontents>*</_exportcontents>
  38. <Private-Package>!*</Private-Package>
  39. <!--
  40. | each module can override these defaults in their osgi.bnd file
  41. -->
  42. <_include>-osgi.bnd</_include>
  43. </instructions>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>