pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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.1.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>authservice.db.postgresql</artifactId>
  9. <name>Authentication webapp PostgreSQL database</name>
  10. <properties>
  11. <karaf-feature-name>authservice-db-postgresql</karaf-feature-name>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>no.priv.bang.authservice</groupId>
  16. <artifactId>authservice.definitions</artifactId>
  17. <version>${project.version}</version>
  18. <scope>provided</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>no.priv.bang.authservice</groupId>
  22. <artifactId>authservice.db.liquibase</artifactId>
  23. <version>${project.version}</version>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>no.priv.bang.osgiservice</groupId>
  28. <artifactId>osgiservice.database</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>no.priv.bang.osgiservice</groupId>
  32. <artifactId>osgiservice.database</artifactId>
  33. <version>${osgi-service.version}</version>
  34. <type>xml</type>
  35. <classifier>features</classifier>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.junit.jupiter</groupId>
  39. <artifactId>junit-jupiter-api</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.junit.jupiter</groupId>
  43. <artifactId>junit-jupiter-engine</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.junit.vintage</groupId>
  47. <artifactId>junit-vintage-engine</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.junit.platform</groupId>
  51. <artifactId>junit-platform-launcher</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.junit.platform</groupId>
  55. <artifactId>junit-platform-runner</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.assertj</groupId>
  59. <artifactId>assertj-core</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mockito</groupId>
  63. <artifactId>mockito-core</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.osgi</groupId>
  67. <artifactId>org.osgi.core</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.osgi</groupId>
  71. <artifactId>org.osgi.service.component.annotations</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.osgi</groupId>
  75. <artifactId>org.osgi.service.log</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.osgi</groupId>
  79. <artifactId>org.osgi.service.jdbc</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  83. <artifactId>service-mocks</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.ops4j.pax.jdbc</groupId>
  87. <artifactId>pax-jdbc</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.ops4j.pax.jdbc</groupId>
  91. <artifactId>pax-jdbc-derby</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.derby</groupId>
  96. <artifactId>derby</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.liquibase</groupId>
  101. <artifactId>liquibase-core</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.postgresql</groupId>
  105. <artifactId>postgresql</artifactId>
  106. <scope>compile</scope>
  107. </dependency>
  108. </dependencies>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.apache.felix</groupId>
  113. <artifactId>maven-bundle-plugin</artifactId>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.apache.karaf.tooling</groupId>
  117. <artifactId>karaf-maven-plugin</artifactId>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-clean-plugin</artifactId>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>