pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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</groupId>
  5. <artifactId>jsr330activator.gogoshell</artifactId>
  6. <version>1.1.1-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>no.steria.osgi.jsr330activator.gogoshell.build</groupId>
  10. <artifactId>shared-plugin-settings</artifactId>
  11. <name>jsr330activator.gogoshell - plugin configuration</name>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>wrappers</module>
  15. <module>compiled</module>
  16. </modules>
  17. <build>
  18. <pluginManagement>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.ops4j</groupId>
  22. <artifactId>maven-pax-plugin</artifactId>
  23. <!--
  24. | enable improved OSGi compilation support for the bundle life-cycle.
  25. | to switch back to the standard bundle life-cycle, move this setting
  26. | down to the maven-bundle-plugin section
  27. -->
  28. <extensions>true</extensions>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.felix</groupId>
  32. <artifactId>maven-bundle-plugin</artifactId>
  33. <version>1.4.3</version>
  34. </plugin>
  35. </plugins>
  36. </pluginManagement>
  37. </build>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <!--
  42. | dependency pom representing the global classpath of imported bundles
  43. -->
  44. <type>pom</type>
  45. <groupId>no.steria.osgi.jsr330activator.gogoshell.build</groupId>
  46. <artifactId>provision</artifactId>
  47. <version>1.1.1-SNAPSHOT</version>
  48. <scope>provided</scope>
  49. <optional>true</optional>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.osgi</groupId>
  53. <artifactId>osgi_R4_core</artifactId>
  54. <version>1.0</version>
  55. <scope>provided</scope>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.osgi</groupId>
  60. <artifactId>osgi_R4_compendium</artifactId>
  61. <version>1.0</version>
  62. <scope>provided</scope>
  63. <optional>true</optional>
  64. </dependency>
  65. </dependencies>
  66. </dependencyManagement>
  67. </project>