pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>parent</artifactId>
  6. <groupId>no.priv.bang.ukelonn</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>ukelonn.api</artifactId>
  10. <packaging>bundle</packaging>
  11. <name>ukelonn api OSGi Bundle</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.apache.felix</groupId>
  15. <artifactId>org.osgi.core</artifactId>
  16. <version>1.4.0</version>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.osgi</groupId>
  21. <artifactId>org.osgi.compendium</artifactId>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.felix</groupId>
  28. <artifactId>maven-bundle-plugin</artifactId>
  29. <extensions>true</extensions>
  30. <configuration>
  31. <instructions>
  32. <Bundle-SymbolicName>no.priv.bang.ukelonn.api</Bundle-SymbolicName>
  33. <Export-Package>no.priv.bang.ukelonn</Export-Package>
  34. <_removeheaders>
  35. Private-Package,
  36. Include-Resource,
  37. Embed-Dependency,
  38. Embed-Transitive
  39. </_removeheaders>
  40. </instructions>
  41. </configuration>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. </project>