pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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.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.junit.platform</groupId>
  43. <artifactId>junit-platform-runner</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.assertj</groupId>
  47. <artifactId>assertj-core</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.mockito</groupId>
  51. <artifactId>mockito-core</artifactId>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.apache.felix</groupId>
  58. <artifactId>maven-bundle-plugin</artifactId>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.karaf.tooling</groupId>
  62. <artifactId>karaf-maven-plugin</artifactId>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>