pom.xml 2.1 KB

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