pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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/xsd/maven-4.0.0.xsd">
  3. <!-- Copyright 2020-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.oldalbum</groupId>
  17. <artifactId>oldalbum</artifactId>
  18. <version>1.9.26</version>
  19. </parent>
  20. <artifactId>oldalbum.services</artifactId>
  21. <name>Oldalbum OSGi service definitions</name>
  22. <properties>
  23. <karaf-feature-name>oldalbum-services</karaf-feature-name>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>no.priv.bang.beans</groupId>
  28. <artifactId>beans.immutable</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>no.priv.bang.beans</groupId>
  33. <artifactId>beans.immutable</artifactId>
  34. <type>xml</type>
  35. <classifier>features</classifier>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.servicemix.specs</groupId>
  39. <artifactId>org.apache.servicemix.specs.jaxrs-api-2.1</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.junit.jupiter</groupId>
  43. <artifactId>junit-jupiter-api</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.junit.jupiter</groupId>
  48. <artifactId>junit-jupiter-engine</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.assertj</groupId>
  53. <artifactId>assertj-core</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.mockito</groupId>
  58. <artifactId>mockito-core</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.osgi</groupId>
  63. <artifactId>org.osgi.service.jdbc</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.felix</groupId>
  71. <artifactId>maven-bundle-plugin</artifactId>
  72. </plugin>
  73. <plugin>
  74. <groupId>org.apache.karaf.tooling</groupId>
  75. <artifactId>karaf-maven-plugin</artifactId>
  76. </plugin>
  77. </plugins>
  78. <pluginManagement>
  79. <plugins>
  80. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  81. <plugin>
  82. <groupId>org.eclipse.m2e</groupId>
  83. <artifactId>lifecycle-mapping</artifactId>
  84. <version>1.0.0</version>
  85. <configuration>
  86. <lifecycleMappingMetadata>
  87. <pluginExecutions>
  88. <pluginExecution>
  89. <pluginExecutionFilter>
  90. <groupId>org.apache.karaf.tooling</groupId>
  91. <artifactId>karaf-maven-plugin</artifactId>
  92. <versionRange>[4.4.3,)</versionRange>
  93. <goals>
  94. <goal>features-generate-descriptor</goal>
  95. </goals>
  96. </pluginExecutionFilter>
  97. <action>
  98. <ignore />
  99. </action>
  100. </pluginExecution>
  101. </pluginExecutions>
  102. </lifecycleMappingMetadata>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </pluginManagement>
  107. </build>
  108. </project>