pom.xml 9.4 KB

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