pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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" xml:space="preserve">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>authservice</artifactId>
  6. <groupId>no.priv.bang.authservice</groupId>
  7. <version>1.3.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>authservice.web.security</artifactId>
  10. <name>Authentication webapp web whiteboard Shiro filter</name>
  11. <properties>
  12. <karaf-feature-name>authservice-web-security</karaf-feature-name>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>no.priv.bang.authservice</groupId>
  17. <artifactId>authservice.web.security.memorysession</artifactId>
  18. <version>${project.version}</version>
  19. <scope>test</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>no.priv.bang.authservice</groupId>
  23. <artifactId>authservice.web.security.dbrealm</artifactId>
  24. <version>${project.version}</version>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>no.priv.bang.authservice</groupId>
  29. <artifactId>authservice.db.liquibase</artifactId>
  30. <version>${project.version}</version>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>no.priv.bang.authservice</groupId>
  35. <artifactId>authservice.db.derby.test</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. <version>${project.version}</version>
  43. <scope>provided</scope>
  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.junit.platform</groupId>
  79. <artifactId>junit-platform-launcher</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.junit.platform</groupId>
  83. <artifactId>junit-platform-runner</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.assertj</groupId>
  87. <artifactId>assertj-core</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.mockito</groupId>
  91. <artifactId>mockito-core</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.mockrunner</groupId>
  95. <artifactId>mockrunner-servlet</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.slf4j</groupId>
  99. <artifactId>slf4j-simple</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.osgi</groupId>
  103. <artifactId>org.osgi.core</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.osgi</groupId>
  107. <artifactId>org.osgi.service.component.annotations</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.osgi</groupId>
  111. <artifactId>org.osgi.service.log</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.osgi</groupId>
  115. <artifactId>org.osgi.service.jdbc</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>no.priv.bang.osgiservice</groupId>
  119. <artifactId>osgiservice.database</artifactId>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>no.priv.bang.osgiservice</groupId>
  124. <artifactId>osgiservice.users</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>no.priv.bang.osgiservice</groupId>
  128. <artifactId>osgiservice.users</artifactId>
  129. <version>${osgi-service.version}</version>
  130. <type>xml</type>
  131. <classifier>features</classifier>
  132. </dependency>
  133. <dependency>
  134. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  135. <artifactId>service-mocks</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.ops4j.pax.jdbc</groupId>
  139. <artifactId>pax-jdbc</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.ops4j.pax.jdbc</groupId>
  143. <artifactId>pax-jdbc-derby</artifactId>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.derby</groupId>
  148. <artifactId>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>org.apache.servicemix.bundles</groupId>
  158. <artifactId>org.apache.servicemix.bundles.javax-inject</artifactId>
  159. </dependency>
  160. <dependency>
  161. <groupId>org.glassfish.jersey.inject</groupId>
  162. <artifactId>jersey-hk2</artifactId>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.glassfish.jersey.containers</groupId>
  166. <artifactId>jersey-container-servlet</artifactId>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.jsoup</groupId>
  170. <artifactId>jsoup</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.glassfish.jersey.media</groupId>
  174. <artifactId>jersey-media-json-jackson</artifactId>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.fasterxml.jackson.core</groupId>
  178. <artifactId>jackson-annotations</artifactId>
  179. <scope>compile</scope>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.fasterxml.jackson.core</groupId>
  183. <artifactId>jackson-core</artifactId>
  184. <scope>compile</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.fasterxml.jackson.core</groupId>
  188. <artifactId>jackson-databind</artifactId>
  189. <scope>compile</scope>
  190. </dependency>
  191. </dependencies>
  192. <build>
  193. <plugins>
  194. <plugin>
  195. <groupId>org.apache.felix</groupId>
  196. <artifactId>maven-bundle-plugin</artifactId>
  197. </plugin>
  198. <plugin>
  199. <groupId>org.apache.karaf.tooling</groupId>
  200. <artifactId>karaf-maven-plugin</artifactId>
  201. <configuration>
  202. <includeTransitiveDependency>true</includeTransitiveDependency>
  203. </configuration>
  204. </plugin>
  205. <plugin>
  206. <groupId>org.apache.maven.plugins</groupId>
  207. <artifactId>maven-surefire-plugin</artifactId>
  208. </plugin>
  209. </plugins>
  210. </build>
  211. </project>