pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2018-2024 Steinar Bang -->
  3. <!-- -->
  4. <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
  5. <!-- you may not use this file except in compliance with the License. -->
  6. <!-- You may obtain a copy of the License at -->
  7. <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
  8. <!-- Unless required by applicable law or agreed to in writing, -->
  9. <!-- software distributed under the License is distributed on an "AS IS" BASIS, -->
  10. <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
  11. <!-- See the License for the specific language governing permissions and limitations -->
  12. <!-- under the License. -->
  13. <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">
  14. <modelVersion>4.0.0</modelVersion>
  15. <artifactId>jerseyinkaraf.webapi</artifactId>
  16. <parent>
  17. <groupId>no.priv.bang.demos.jerseyinkaraf</groupId>
  18. <artifactId>jerseyinkaraf</artifactId>
  19. <version>2.0.0-SNAPSHOT</version>
  20. </parent>
  21. <name>Web API for the Jersey in Karaf demo</name>
  22. <description>Contains a DS component that plugs a REST API into the Web Whiteboard Extender in Karaf.</description>
  23. <dependencies>
  24. <dependency>
  25. <groupId>no.priv.bang.demos.jerseyinkaraf</groupId>
  26. <artifactId>jerseyinkaraf.servicedef</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>no.priv.bang.demos.jerseyinkaraf</groupId>
  31. <artifactId>jerseyinkaraf.services</artifactId>
  32. <version>${project.version}</version>
  33. <type>xml</type>
  34. <classifier>features</classifier>
  35. </dependency>
  36. <dependency>
  37. <groupId>no.priv.bang.demos.jerseyinkaraf</groupId>
  38. <artifactId>jerseyinkaraf.services</artifactId>
  39. <version>${project.version}</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>no.priv.bang.demos.jerseyinkaraf</groupId>
  44. <artifactId>jerseyinkaraf.webcontext</artifactId>
  45. <version>${project.version}</version>
  46. <type>xml</type>
  47. <classifier>features</classifier>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.osgi</groupId>
  51. <artifactId>osgi.core</artifactId>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.osgi</groupId>
  56. <artifactId>org.osgi.service.component.annotations</artifactId>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  61. <artifactId>adapters.logservice</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>no.priv.bang.servlet</groupId>
  66. <artifactId>servlet.jersey</artifactId>
  67. <type>xml</type>
  68. <classifier>features</classifier>
  69. </dependency>
  70. <dependency>
  71. <groupId>javax.servlet</groupId>
  72. <artifactId>javax.servlet-api</artifactId>
  73. <scope>provided</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.ops4j.pax.web</groupId>
  77. <artifactId>pax-web-api</artifactId>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.ops4j.pax.web</groupId>
  82. <artifactId>pax-web-extender-whiteboard</artifactId>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>no.priv.bang.servlet</groupId>
  87. <artifactId>servlet.jersey</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.glassfish.jersey.containers</groupId>
  91. <artifactId>jersey-container-servlet</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.glassfish.jersey.inject</groupId>
  95. <artifactId>jersey-hk2</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.glassfish.jersey.media</groupId>
  99. <artifactId>jersey-media-json-jackson</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.junit.jupiter</groupId>
  103. <artifactId>junit-jupiter-api</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.junit.jupiter</groupId>
  108. <artifactId>junit-jupiter-engine</artifactId>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.junit.platform</groupId>
  113. <artifactId>junit-platform-launcher</artifactId>
  114. <scope>test</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.assertj</groupId>
  118. <artifactId>assertj-core</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.mockito</groupId>
  123. <artifactId>mockito-core</artifactId>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.mockrunner</groupId>
  128. <artifactId>mockrunner-servlet</artifactId>
  129. <scope>test</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  133. <artifactId>service-mocks</artifactId>
  134. <scope>test</scope>
  135. </dependency>
  136. </dependencies>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.felix</groupId>
  141. <artifactId>maven-bundle-plugin</artifactId>
  142. </plugin>
  143. <plugin>
  144. <groupId>org.apache.karaf.tooling</groupId>
  145. <artifactId>karaf-maven-plugin</artifactId>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>