pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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.db.liquibase</artifactId>
  9. <name>Authentication webapp Liquibase DB schema</name>
  10. <properties>
  11. <karaf-feature-name>authservice-db-liquibase</karaf-feature-name>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.junit.jupiter</groupId>
  16. <artifactId>junit-jupiter-api</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.junit.jupiter</groupId>
  20. <artifactId>junit-jupiter-engine</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.junit.vintage</groupId>
  24. <artifactId>junit-vintage-engine</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.junit.platform</groupId>
  28. <artifactId>junit-platform-launcher</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.junit.platform</groupId>
  32. <artifactId>junit-platform-runner</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.assertj</groupId>
  36. <artifactId>assertj-core</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mockito</groupId>
  40. <artifactId>mockito-core</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.osgi</groupId>
  44. <artifactId>org.osgi.service.jdbc</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.ops4j.pax.jdbc</groupId>
  49. <artifactId>pax-jdbc</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.ops4j.pax.jdbc</groupId>
  54. <artifactId>pax-jdbc-derby</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.derby</groupId>
  59. <artifactId>derby</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.liquibase</groupId>
  64. <artifactId>liquibase-core</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>no.priv.bang.karaf</groupId>
  68. <artifactId>liquibase-core-karaf</artifactId>
  69. <version>${liquibase.version}</version>
  70. <type>xml</type>
  71. <classifier>features</classifier>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.shiro</groupId>
  75. <artifactId>shiro-core</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.apache.felix</groupId>
  83. <artifactId>maven-bundle-plugin</artifactId>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.karaf.tooling</groupId>
  87. <artifactId>karaf-maven-plugin</artifactId>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-clean-plugin</artifactId>
  92. <configuration>
  93. <filesets>
  94. <fileset>
  95. <directory>.</directory>
  96. <includes>
  97. <include>**/*.log</include>
  98. <include>**/*.sql</include>
  99. </includes>
  100. </fileset>
  101. </filesets>
  102. </configuration>
  103. </plugin>
  104. </plugins>
  105. </build>
  106. </project>