pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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>modelstore</artifactId>
  6. <groupId>no.priv.bang.modeling.modelstore</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>modelstore.value</artifactId>
  10. <packaging>bundle</packaging>
  11. <name>modelstore value creator DS component</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>no.priv.bang.modeling.modelstore</groupId>
  18. <artifactId>modelstore.services</artifactId>
  19. <version>${project.version}</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>no.priv.bang.modeling.modelstore</groupId>
  24. <artifactId>modelstore.services</artifactId>
  25. <version>${project.version}</version>
  26. <classifier>features</classifier>
  27. <type>xml</type>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.osgi</groupId>
  31. <artifactId>osgi.core</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.osgi</groupId>
  36. <artifactId>org.osgi.service.component.annotations</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.junit.jupiter</groupId>
  40. <artifactId>junit-jupiter-api</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.junit.jupiter</groupId>
  45. <artifactId>junit-jupiter-engine</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.junit.vintage</groupId>
  50. <artifactId>junit-vintage-engine</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.assertj</groupId>
  55. <artifactId>assertj-core</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.mockito</groupId>
  60. <artifactId>mockito-core</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.fasterxml.jackson.core</groupId>
  65. <artifactId>jackson-core</artifactId>
  66. <scope>compile</scope>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.apache.felix</groupId>
  73. <artifactId>maven-bundle-plugin</artifactId>
  74. <configuration>
  75. <instructions>
  76. <Export-Package>!*</Export-Package>
  77. </instructions>
  78. </configuration>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.apache.karaf.tooling</groupId>
  82. <artifactId>karaf-maven-plugin</artifactId>
  83. </plugin>
  84. </plugins>
  85. <pluginManagement>
  86. <plugins>
  87. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  88. <plugin>
  89. <groupId>org.eclipse.m2e</groupId>
  90. <artifactId>lifecycle-mapping</artifactId>
  91. <version>1.0.0</version>
  92. <configuration>
  93. <lifecycleMappingMetadata>
  94. <pluginExecutions>
  95. <pluginExecution>
  96. <pluginExecutionFilter>
  97. <groupId>org.apache.karaf.tooling</groupId>
  98. <artifactId>karaf-maven-plugin</artifactId>
  99. <versionRange>[4.4.3,)</versionRange>
  100. <goals>
  101. <goal>features-generate-descriptor</goal>
  102. </goals>
  103. </pluginExecutionFilter>
  104. <action>
  105. <ignore></ignore>
  106. </action>
  107. </pluginExecution>
  108. </pluginExecutions>
  109. </lifecycleMappingMetadata>
  110. </configuration>
  111. </plugin>
  112. </plugins>
  113. </pluginManagement>
  114. </build>
  115. </project>