pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright 2021-2023 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. <parent>
  16. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  17. <artifactId>adapters</artifactId>
  18. <version>1.3.0-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>adapters.tests</artifactId>
  21. <name>OSGi service adapters integration tests</name>
  22. <description>Pax exam tests loading features for the OSGi service adapters</description>
  23. <dependencies>
  24. <dependency>
  25. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  26. <artifactId>adapters.jdbc</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>no.priv.bang.osgi.service.adapters</groupId>
  31. <artifactId>adapters.logservice</artifactId>
  32. <version>${project.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.ops4j.pax.exam</groupId>
  40. <artifactId>pax-exam</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.ops4j.pax.exam</groupId>
  44. <artifactId>pax-exam-junit4</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.ops4j.pax.exam</groupId>
  49. <artifactId>pax-exam-container-karaf</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.karaf.itests</groupId>
  54. <artifactId>common</artifactId>
  55. <version>${karaf.version}</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.karaf</groupId>
  60. <artifactId>apache-karaf</artifactId>
  61. <scope>test</scope>
  62. <type>tar.gz</type>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>org.apache.karaf</groupId>
  66. <artifactId>org.apache.karaf.client</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.awaitility</groupId>
  72. <artifactId>awaitility</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.servicemix.bundles</groupId>
  76. <artifactId>org.apache.servicemix.bundles.hamcrest</artifactId>
  77. <version>1.3_1</version>
  78. <scope>runtime</scope>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <plugins>
  83. <!-- generate dependencies versions for use by asInProject() in pax exam tests -->
  84. <plugin>
  85. <groupId>org.apache.servicemix.tooling</groupId>
  86. <artifactId>depends-maven-plugin</artifactId>
  87. <version>1.4.0</version>
  88. <executions>
  89. <execution>
  90. <id>generate-depends-file</id>
  91. <goals>
  92. <goal>generate-depends-file</goal>
  93. </goals>
  94. </execution>
  95. </executions>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>