pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>jsr330activator.testbundles</artifactId>
  6. <groupId>no.steria.osgi.jsr330activator</groupId>
  7. <version>1.1.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>jsr330activator.testbundle9</artifactId>
  10. <packaging>bundle</packaging>
  11. <name>jsr330activator.testbundle9 OSGi Bundle</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.osgi</groupId>
  18. <artifactId>org.osgi.core</artifactId>
  19. <version>4.3.0</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>no.steria.osgi.jsr330activator</groupId>
  24. <artifactId>jsr330activator.implementation</artifactId>
  25. <version>${project.version}</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>javax.inject</groupId>
  30. <artifactId>javax.inject</artifactId>
  31. <version>1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>no.steria.osgi.jsr330activator</groupId>
  35. <artifactId>jsr330activator.testbundle8</artifactId>
  36. <version>${project.version}</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.felix</groupId>
  44. <artifactId>maven-bundle-plugin</artifactId>
  45. <version>2.3.7</version>
  46. <extensions>true</extensions>
  47. <configuration>
  48. <instructions>
  49. <Bundle-Activator>no.steria.osgi.jsr330activator.Jsr330Activator</Bundle-Activator>
  50. <Embed-Dependency>jsr330activator.implementation;inline=true,javax.inject;inline=true</Embed-Dependency>
  51. </instructions>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. <description>An OSGi bundle used in integration tests. This bundle have two separate providers of the same service, that both should be registered as OSGi services.</description>
  57. </project>