pom.xml 8.5 KB

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