pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <!-- Copyright 2016-2024 Steinar Bang -->
  4. <!-- -->
  5. <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
  6. <!-- you may not use this file except in compliance with the License. -->
  7. <!-- You may obtain a copy of the License at -->
  8. <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
  9. <!-- Unless required by applicable law or agreed to in writing, -->
  10. <!-- software distributed under the License is distributed on an "AS IS" BASIS, -->
  11. <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
  12. <!-- See the License for the specific language governing permissions and limitations -->
  13. <!-- under the License. -->
  14. <modelVersion>4.0.0</modelVersion>
  15. <parent>
  16. <artifactId>ukelonn</artifactId>
  17. <groupId>no.priv.bang.ukelonn</groupId>
  18. <version>1.0.0-SNAPSHOT</version>
  19. </parent>
  20. <artifactId>ukelonn.tests</artifactId>
  21. <properties>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>junit</groupId>
  26. <artifactId>junit</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.ops4j.pax.exam</groupId>
  31. <artifactId>pax-exam</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.ops4j.pax.exam</groupId>
  35. <artifactId>pax-exam-junit4</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.ops4j.pax.exam</groupId>
  40. <artifactId>pax-exam-container-karaf</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.karaf.itests</groupId>
  45. <artifactId>common</artifactId>
  46. <version>${karaf.version}</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.karaf</groupId>
  51. <artifactId>apache-karaf</artifactId>
  52. <scope>test</scope>
  53. <type>tar.gz</type>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>org.apache.karaf</groupId>
  57. <artifactId>org.apache.karaf.client</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.awaitility</groupId>
  63. <artifactId>awaitility</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.servicemix.bundles</groupId>
  67. <artifactId>org.apache.servicemix.bundles.hamcrest</artifactId>
  68. <version>1.3_1</version>
  69. <scope>runtime</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>no.priv.bang.ukelonn</groupId>
  73. <artifactId>karaf</artifactId>
  74. <version>${project.version}</version>
  75. <classifier>features</classifier>
  76. <type>xml</type>
  77. </dependency>
  78. </dependencies>
  79. <build>
  80. <plugins>
  81. <!-- generate dependencies versions for use by asInProject() in pax exam tests -->
  82. <plugin>
  83. <groupId>org.apache.servicemix.tooling</groupId>
  84. <artifactId>depends-maven-plugin</artifactId>
  85. <version>1.4.0</version>
  86. <executions>
  87. <execution>
  88. <id>generate-depends-file</id>
  89. <goals>
  90. <goal>generate-depends-file</goal>
  91. </goals>
  92. </execution>
  93. </executions>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-surefire-plugin</artifactId>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>