pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <artifactId>authservice</artifactId>
  5. <groupId>no.priv.bang.authservice</groupId>
  6. <version>1.3.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>authservice.web.security.memorysession</artifactId>
  9. <name>Authentication webapp memory based Shiro SessionDAO realm service component</name>
  10. <properties>
  11. <karaf-feature-name>authservice-web-security-memorysession</karaf-feature-name>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>no.priv.bang.osgiservice</groupId>
  16. <artifactId>osgiservice.database</artifactId>
  17. <scope>provided</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.apache.shiro</groupId>
  21. <artifactId>shiro-core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.junit.jupiter</groupId>
  25. <artifactId>junit-jupiter-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.junit.jupiter</groupId>
  29. <artifactId>junit-jupiter-engine</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.junit.vintage</groupId>
  33. <artifactId>junit-vintage-engine</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.junit.platform</groupId>
  37. <artifactId>junit-platform-launcher</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.junit.platform</groupId>
  41. <artifactId>junit-platform-runner</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.assertj</groupId>
  45. <artifactId>assertj-core</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.mockito</groupId>
  49. <artifactId>mockito-core</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.slf4j</groupId>
  53. <artifactId>slf4j-simple</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.osgi</groupId>
  57. <artifactId>org.osgi.core</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.osgi</groupId>
  61. <artifactId>org.osgi.service.component.annotations</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.osgi</groupId>
  65. <artifactId>org.osgi.service.log</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.osgi</groupId>
  69. <artifactId>org.osgi.service.jdbc</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  73. <artifactId>service-mocks</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.ops4j.pax.jdbc</groupId>
  77. <artifactId>pax-jdbc</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.ops4j.pax.jdbc</groupId>
  81. <artifactId>pax-jdbc-derby</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.derby</groupId>
  86. <artifactId>derby</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.apache.felix</groupId>
  94. <artifactId>maven-bundle-plugin</artifactId>
  95. </plugin>
  96. <plugin>
  97. <groupId>org.apache.karaf.tooling</groupId>
  98. <artifactId>karaf-maven-plugin</artifactId>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-clean-plugin</artifactId>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>