pom.xml 7.7 KB

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