pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.services</artifactId>
  10. <name>modelstore OSGi Bundle</name>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.osgi</groupId>
  17. <artifactId>osgi.core</artifactId>
  18. <scope>provided</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.junit.jupiter</groupId>
  22. <artifactId>junit-jupiter-api</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.junit.jupiter</groupId>
  27. <artifactId>junit-jupiter-engine</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.junit.vintage</groupId>
  32. <artifactId>junit-vintage-engine</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.assertj</groupId>
  37. <artifactId>assertj-core</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.mockito</groupId>
  42. <artifactId>mockito-core</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.felix</groupId>
  50. <artifactId>maven-bundle-plugin</artifactId>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.apache.karaf.tooling</groupId>
  54. <artifactId>karaf-maven-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. <pluginManagement>
  58. <plugins>
  59. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  60. <plugin>
  61. <groupId>org.eclipse.m2e</groupId>
  62. <artifactId>lifecycle-mapping</artifactId>
  63. <version>1.0.0</version>
  64. <configuration>
  65. <lifecycleMappingMetadata>
  66. <pluginExecutions>
  67. <pluginExecution>
  68. <pluginExecutionFilter>
  69. <groupId>org.apache.karaf.tooling</groupId>
  70. <artifactId>karaf-maven-plugin</artifactId>
  71. <versionRange>[4.4.3,)</versionRange>
  72. <goals>
  73. <goal>features-generate-descriptor</goal>
  74. </goals>
  75. </pluginExecutionFilter>
  76. <action>
  77. <ignore></ignore>
  78. </action>
  79. </pluginExecution>
  80. </pluginExecutions>
  81. </lifecycleMappingMetadata>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </pluginManagement>
  86. </build>
  87. </project>