pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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" xml:space="preserve">
  3. <!-- Copyright 2018-2021 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>org.junit.jupiter</groupId>
  72. <artifactId>junit-jupiter-api</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.junit.jupiter</groupId>
  77. <artifactId>junit-jupiter-engine</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.junit.vintage</groupId>
  82. <artifactId>junit-vintage-engine</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.assertj</groupId>
  87. <artifactId>assertj-core</artifactId>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.mockito</groupId>
  92. <artifactId>mockito-core</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.osgi</groupId>
  97. <artifactId>osgi.cmpn</artifactId>
  98. <scope>provided</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  102. <artifactId>service-mocks</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.ops4j.pax.jdbc</groupId>
  107. <artifactId>pax-jdbc</artifactId>
  108. <scope>provided</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.ops4j.pax.jdbc</groupId>
  112. <artifactId>pax-jdbc-derby</artifactId>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.derby</groupId>
  117. <artifactId>derby</artifactId>
  118. <scope>test</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.liquibase</groupId>
  122. <artifactId>liquibase-core</artifactId>
  123. <scope>test</scope>
  124. </dependency>
  125. </dependencies>
  126. <build>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.apache.felix</groupId>
  130. <artifactId>maven-bundle-plugin</artifactId>
  131. </plugin>
  132. <plugin>
  133. <groupId>org.apache.karaf.tooling</groupId>
  134. <artifactId>karaf-maven-plugin</artifactId>
  135. <configuration>
  136. <includeTransitiveDependency>true</includeTransitiveDependency>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-clean-plugin</artifactId>
  142. </plugin>
  143. </plugins>
  144. </build>
  145. </project>