pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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 2016-2025 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. <artifactId>ukelonn</artifactId>
  17. <groupId>no.priv.bang.ukelonn</groupId>
  18. <version>1.0.0-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>ukelonn.web.services</artifactId>
  21. <name>Ukelonn webapp REST API</name>
  22. <properties>
  23. <Bundle-SymbolicName>no.priv.bang.ukelonn.web.services</Bundle-SymbolicName>
  24. <karaf-feature-name>ukelonn-web-services</karaf-feature-name>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>no.priv.bang.ukelonn</groupId>
  29. <artifactId>ukelonn.services</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>no.priv.bang.ukelonn</groupId>
  34. <artifactId>ukelonn.web.security</artifactId>
  35. <type>xml</type>
  36. <classifier>features</classifier>
  37. </dependency>
  38. <dependency>
  39. <groupId>no.priv.bang.authservice</groupId>
  40. <artifactId>authservice.definitions</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.osgi</groupId>
  45. <artifactId>osgi.core</artifactId>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.osgi</groupId>
  50. <artifactId>org.osgi.service.component.annotations</artifactId>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>no.priv.bang.osgiservice</groupId>
  55. <artifactId>osgiservice.users</artifactId>
  56. <scope>provided</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>no.priv.bang.osgiservice</groupId>
  60. <artifactId>osgiservice.users</artifactId>
  61. <type>xml</type>
  62. <classifier>features</classifier>
  63. </dependency>
  64. <dependency>
  65. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  66. <artifactId>adapters.logservice</artifactId>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  71. <artifactId>adapters.logservice</artifactId>
  72. <type>xml</type>
  73. <classifier>features</classifier>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.ops4j.pax.web</groupId>
  77. <artifactId>pax-web-api</artifactId>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>javax.servlet</groupId>
  82. <artifactId>javax.servlet-api</artifactId>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.ops4j.pax.web</groupId>
  87. <artifactId>pax-web-runtime</artifactId>
  88. <scope>provided</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.ops4j.pax.web</groupId>
  92. <artifactId>pax-web-extender-whiteboard</artifactId>
  93. <scope>provided</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>no.priv.bang.servlet</groupId>
  97. <artifactId>servlet.jersey</artifactId>
  98. <scope>provided</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>no.priv.bang.servlet</groupId>
  102. <artifactId>servlet.jersey</artifactId>
  103. <type>xml</type>
  104. <classifier>features</classifier>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.glassfish.jersey.containers</groupId>
  108. <artifactId>jersey-container-servlet</artifactId>
  109. <scope>provided</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.glassfish.jersey.inject</groupId>
  113. <artifactId>jersey-hk2</artifactId>
  114. <scope>provided</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.glassfish.jersey.media</groupId>
  118. <artifactId>jersey-media-json-jackson</artifactId>
  119. <scope>provided</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>no.priv.bang.ukelonn</groupId>
  123. <artifactId>ukelonn.db.liquibase</artifactId>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>no.priv.bang.ukelonn</groupId>
  128. <artifactId>ukelonn.db.liquibase.test</artifactId>
  129. <scope>test</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>no.priv.bang.ukelonn</groupId>
  133. <artifactId>ukelonn.testutils</artifactId>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>no.priv.bang.authservice</groupId>
  138. <artifactId>authservice.users</artifactId>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.commons</groupId>
  143. <artifactId>commons-lang3</artifactId>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.junit.jupiter</groupId>
  148. <artifactId>junit-jupiter-api</artifactId>
  149. <scope>test</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.junit.jupiter</groupId>
  153. <artifactId>junit-jupiter-engine</artifactId>
  154. <scope>test</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.assertj</groupId>
  158. <artifactId>assertj-core</artifactId>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.mockito</groupId>
  163. <artifactId>mockito-core</artifactId>
  164. <scope>test</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.mockrunner</groupId>
  168. <artifactId>mockrunner-servlet</artifactId>
  169. <scope>test</scope>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.ops4j.pax.jdbc</groupId>
  173. <artifactId>pax-jdbc-derby</artifactId>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.liquibase</groupId>
  178. <artifactId>liquibase-core</artifactId>
  179. <scope>test</scope>
  180. </dependency>
  181. </dependencies>
  182. <build>
  183. <plugins>
  184. <plugin>
  185. <artifactId>maven-clean-plugin</artifactId>
  186. </plugin>
  187. <plugin>
  188. <groupId>org.apache.maven.plugins</groupId>
  189. <artifactId>maven-surefire-plugin</artifactId>
  190. </plugin>
  191. <plugin>
  192. <groupId>org.apache.felix</groupId>
  193. <artifactId>maven-bundle-plugin</artifactId>
  194. </plugin>
  195. <plugin>
  196. <groupId>org.apache.karaf.tooling</groupId>
  197. <artifactId>karaf-maven-plugin</artifactId>
  198. <configuration>
  199. <includeTransitiveDependency>true</includeTransitiveDependency>
  200. </configuration>
  201. </plugin>
  202. </plugins>
  203. <pluginManagement>
  204. <plugins>
  205. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  206. <plugin>
  207. <groupId>org.eclipse.m2e</groupId>
  208. <artifactId>lifecycle-mapping</artifactId>
  209. <version>1.0.0</version>
  210. <configuration>
  211. <lifecycleMappingMetadata>
  212. <pluginExecutions>
  213. <pluginExecution>
  214. <pluginExecutionFilter>
  215. <groupId>org.apache.karaf.tooling</groupId>
  216. <artifactId>karaf-maven-plugin</artifactId>
  217. <versionRange>[4.4.3,)</versionRange>
  218. <goals>
  219. <goal>
  220. features-generate-descriptor
  221. </goal>
  222. </goals>
  223. </pluginExecutionFilter>
  224. <action>
  225. <ignore></ignore>
  226. </action>
  227. </pluginExecution>
  228. </pluginExecutions>
  229. </lifecycleMappingMetadata>
  230. </configuration>
  231. </plugin>
  232. </plugins>
  233. </pluginManagement>
  234. </build>
  235. </project>