pom.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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.21</version>
  19. </parent>
  20. <artifactId>oldalbum.backend</artifactId>
  21. <name>Oldalbum OSGi service implementations</name>
  22. <properties>
  23. <karaf-feature-name>oldalbum-backend</karaf-feature-name>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>no.priv.bang.oldalbum</groupId>
  28. <artifactId>oldalbum.services</artifactId>
  29. <version>${project.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.jsoup</groupId>
  33. <artifactId>jsoup</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>no.priv.bang.beans</groupId>
  37. <artifactId>beans.immutable</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>no.priv.bang.jdbc</groupId>
  42. <artifactId>jdbc.sqldumper</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>no.priv.bang.jdbc</groupId>
  47. <artifactId>jdbc.sqldumper</artifactId>
  48. <type>xml</type>
  49. <classifier>features</classifier>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.twelvemonkeys.imageio</groupId>
  53. <artifactId>imageio-metadata</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>no.priv.bang.oldalbum</groupId>
  57. <artifactId>oldalbum.backend.imageio</artifactId>
  58. <version>${project.version}</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.twelvemonkeys.imageio</groupId>
  63. <artifactId>imageio-psd</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.twelvemonkeys.imageio</groupId>
  68. <artifactId>imageio-jpeg</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.twelvemonkeys.imageio</groupId>
  73. <artifactId>imageio-tiff</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>no.priv.bang.oldalbum</groupId>
  78. <artifactId>oldalbum.db.liquibase</artifactId>
  79. <version>${project.version}</version>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>no.priv.bang.oldalbum</groupId>
  84. <artifactId>oldalbum.db.liquibase.test</artifactId>
  85. <version>${project.version}</version>
  86. <scope>test</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.junit.jupiter</groupId>
  90. <artifactId>junit-jupiter-api</artifactId>
  91. <scope>test</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.junit.jupiter</groupId>
  95. <artifactId>junit-jupiter-engine</artifactId>
  96. <scope>test</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.assertj</groupId>
  100. <artifactId>assertj-core</artifactId>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.mockito</groupId>
  105. <artifactId>mockito-core</artifactId>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.ops4j.pax.jdbc</groupId>
  110. <artifactId>pax-jdbc-derby</artifactId>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.ops4j.pax.jdbc</groupId>
  115. <artifactId>pax-jdbc-config</artifactId>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.mockrunner</groupId>
  120. <artifactId>mockrunner-jdbc</artifactId>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.derby</groupId>
  125. <artifactId>derby</artifactId>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.liquibase</groupId>
  130. <artifactId>liquibase-core</artifactId>
  131. <scope>test</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.osgi</groupId>
  135. <artifactId>osgi.core</artifactId>
  136. <scope>provided</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.osgi</groupId>
  140. <artifactId>org.osgi.service.component.annotations</artifactId>
  141. <scope>provided</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  145. <artifactId>adapters.logservice</artifactId>
  146. <scope>provided</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  150. <artifactId>adapters.logservice</artifactId>
  151. <type>xml</type>
  152. <classifier>features</classifier>
  153. </dependency>
  154. <dependency>
  155. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  156. <artifactId>service-mocks</artifactId>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.osgi</groupId>
  161. <artifactId>org.osgi.service.jdbc</artifactId>
  162. <scope>test</scope>
  163. </dependency>
  164. </dependencies>
  165. <build>
  166. <plugins>
  167. <plugin>
  168. <groupId>org.apache.felix</groupId>
  169. <artifactId>maven-bundle-plugin</artifactId>
  170. </plugin>
  171. <plugin>
  172. <groupId>org.apache.karaf.tooling</groupId>
  173. <artifactId>karaf-maven-plugin</artifactId>
  174. </plugin>
  175. </plugins>
  176. <pluginManagement>
  177. <plugins>
  178. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  179. <plugin>
  180. <groupId>org.eclipse.m2e</groupId>
  181. <artifactId>lifecycle-mapping</artifactId>
  182. <version>1.0.0</version>
  183. <configuration>
  184. <lifecycleMappingMetadata>
  185. <pluginExecutions>
  186. <pluginExecution>
  187. <pluginExecutionFilter>
  188. <groupId>org.apache.karaf.tooling</groupId>
  189. <artifactId>karaf-maven-plugin</artifactId>
  190. <versionRange>[4.4.3,)</versionRange>
  191. <goals>
  192. <goal>features-generate-descriptor</goal>
  193. </goals>
  194. </pluginExecutionFilter>
  195. <action>
  196. <ignore />
  197. </action>
  198. </pluginExecution>
  199. </pluginExecutions>
  200. </lifecycleMappingMetadata>
  201. </configuration>
  202. </plugin>
  203. </plugins>
  204. </pluginManagement>
  205. </build>
  206. </project>