pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <!-- Copyright 2019-2023 Steinar Bang -->
  4. <!-- -->
  5. <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
  6. <!-- you may not use this file except in compliance with the License. -->
  7. <!-- You may obtain a copy of the License at -->
  8. <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
  9. <!-- Unless required by applicable law or agreed to in writing, -->
  10. <!-- software distributed under the License is distributed on an "AS IS" BASIS, -->
  11. <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
  12. <!-- See the License for the specific language governing permissions and limitations -->
  13. <!-- under the License. -->
  14. <modelVersion>4.0.0</modelVersion>
  15. <parent>
  16. <groupId>no.priv.bang.handlereg</groupId>
  17. <artifactId>handlereg</artifactId>
  18. <version>1.0.0-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>handlereg.backend.testdata</artifactId>
  21. <name>Ekstra testdata til authservice</name>
  22. <properties>
  23. <karaf-feature-name>handlereg-backend-testdata</karaf-feature-name>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>no.priv.bang.handlereg</groupId>
  28. <artifactId>handlereg.services</artifactId>
  29. <version>${project.version}</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>no.priv.bang.handlereg</groupId>
  34. <artifactId>handlereg.services</artifactId>
  35. <version>${project.version}</version>
  36. <type>xml</type>
  37. <classifier>features</classifier>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.osgi</groupId>
  41. <artifactId>org.osgi.service.component.annotations</artifactId>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>no.priv.bang.osgiservice</groupId>
  46. <artifactId>osgiservice.users</artifactId>
  47. <scope>provided</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>no.priv.bang.osgiservice</groupId>
  51. <artifactId>osgiservice.users</artifactId>
  52. <type>xml</type>
  53. <classifier>features</classifier>
  54. </dependency>
  55. <dependency>
  56. <groupId>no.priv.bang.beans</groupId>
  57. <artifactId>beans.immutable</artifactId>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>no.priv.bang.beans</groupId>
  62. <artifactId>beans.immutable</artifactId>
  63. <type>xml</type>
  64. <classifier>features</classifier>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.junit.jupiter</groupId>
  68. <artifactId>junit-jupiter-api</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.junit.jupiter</groupId>
  73. <artifactId>junit-jupiter-engine</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.junit.vintage</groupId>
  78. <artifactId>junit-vintage-engine</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.assertj</groupId>
  83. <artifactId>assertj-core</artifactId>
  84. <scope>test</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.mockito</groupId>
  88. <artifactId>mockito-core</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.apache.felix</groupId>
  96. <artifactId>maven-bundle-plugin</artifactId>
  97. </plugin>
  98. <plugin>
  99. <groupId>org.apache.karaf.tooling</groupId>
  100. <artifactId>karaf-maven-plugin</artifactId>
  101. </plugin>
  102. </plugins>
  103. <pluginManagement>
  104. <plugins>
  105. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  106. <plugin>
  107. <groupId>org.eclipse.m2e</groupId>
  108. <artifactId>lifecycle-mapping</artifactId>
  109. <version>1.0.0</version>
  110. <configuration>
  111. <lifecycleMappingMetadata>
  112. <pluginExecutions>
  113. <pluginExecution>
  114. <pluginExecutionFilter>
  115. <groupId>org.apache.karaf.tooling</groupId>
  116. <artifactId>karaf-maven-plugin</artifactId>
  117. <versionRange>[4.4.3,)</versionRange>
  118. <goals>
  119. <goal>features-generate-descriptor</goal>
  120. </goals>
  121. </pluginExecutionFilter>
  122. <action>
  123. <ignore></ignore>
  124. </action>
  125. </pluginExecution>
  126. </pluginExecutions>
  127. </lifecycleMappingMetadata>
  128. </configuration>
  129. </plugin>
  130. </plugins>
  131. </pluginManagement>
  132. </build>
  133. </project>