pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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-2019 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. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>javax.servlet-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.ops4j.pax.web</groupId>
  55. <artifactId>pax-web-extender-whiteboard</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.shiro</groupId>
  59. <artifactId>shiro-core</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.shiro</groupId>
  63. <artifactId>shiro-web</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.junit.jupiter</groupId>
  67. <artifactId>junit-jupiter-api</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.junit.jupiter</groupId>
  71. <artifactId>junit-jupiter-engine</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.junit.vintage</groupId>
  75. <artifactId>junit-vintage-engine</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.assertj</groupId>
  79. <artifactId>assertj-core</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.mockito</groupId>
  83. <artifactId>mockito-core</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.slf4j</groupId>
  87. <artifactId>slf4j-simple</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.osgi</groupId>
  91. <artifactId>org.osgi.core</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.osgi</groupId>
  95. <artifactId>org.osgi.service.component.annotations</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.osgi</groupId>
  99. <artifactId>org.osgi.service.log</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.osgi</groupId>
  103. <artifactId>org.osgi.service.jdbc</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  107. <artifactId>service-mocks</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.ops4j.pax.jdbc</groupId>
  111. <artifactId>pax-jdbc</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.ops4j.pax.jdbc</groupId>
  115. <artifactId>pax-jdbc-derby</artifactId>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.derby</groupId>
  120. <artifactId>derby</artifactId>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.liquibase</groupId>
  125. <artifactId>liquibase-core</artifactId>
  126. <scope>test</scope>
  127. </dependency>
  128. </dependencies>
  129. <build>
  130. <plugins>
  131. <plugin>
  132. <groupId>org.apache.felix</groupId>
  133. <artifactId>maven-bundle-plugin</artifactId>
  134. </plugin>
  135. <plugin>
  136. <groupId>org.apache.karaf.tooling</groupId>
  137. <artifactId>karaf-maven-plugin</artifactId>
  138. <configuration>
  139. <includeTransitiveDependency>true</includeTransitiveDependency>
  140. </configuration>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.apache.maven.plugins</groupId>
  144. <artifactId>maven-clean-plugin</artifactId>
  145. </plugin>
  146. </plugins>
  147. </build>
  148. </project>