pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.6.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>authservice.definitions</artifactId>
  9. <name>Authentication webapp definitions bundle</name>
  10. <properties>
  11. <karaf-feature-name>authservice-definitions</karaf-feature-name>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>no.priv.bang.osgiservice</groupId>
  16. <artifactId>osgiservice.database</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>no.priv.bang.osgiservice</groupId>
  20. <artifactId>osgiservice.database</artifactId>
  21. <version>${osgi-service.version}</version>
  22. <type>xml</type>
  23. <classifier>features</classifier>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.junit.jupiter</groupId>
  27. <artifactId>junit-jupiter-api</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.junit.jupiter</groupId>
  31. <artifactId>junit-jupiter-engine</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.junit.vintage</groupId>
  35. <artifactId>junit-vintage-engine</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.junit.platform</groupId>
  39. <artifactId>junit-platform-launcher</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.assertj</groupId>
  43. <artifactId>assertj-core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mockito</groupId>
  47. <artifactId>mockito-core</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.apache.felix</groupId>
  54. <artifactId>maven-bundle-plugin</artifactId>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.karaf.tooling</groupId>
  58. <artifactId>karaf-maven-plugin</artifactId>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>