pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.opencv</groupId>
  6. <artifactId>opencv-parent</artifactId>
  7. <version>4.5.5</version>
  8. </parent>
  9. <groupId>org.opencv</groupId>
  10. <artifactId>opencv-it</artifactId>
  11. <name>OpenCV Integration Test</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.ops4j.pax.exam</groupId>
  15. <artifactId>pax-exam-container-karaf</artifactId>
  16. <version>${pax.exam.version}</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.ops4j.pax.exam</groupId>
  21. <artifactId>pax-exam-junit4</artifactId>
  22. <version>${pax.exam.version}</version>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.geronimo.specs</groupId>
  27. <artifactId>geronimo-atinject_1.0_spec</artifactId>
  28. <version>1.0</version>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.ops4j.pax.url</groupId>
  33. <artifactId>pax-url-aether</artifactId>
  34. <version>1.6.0</version>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.osgi</groupId>
  39. <artifactId>org.osgi.core</artifactId>
  40. <version>4.3.1</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.osgi</groupId>
  45. <artifactId>org.osgi.compendium</artifactId>
  46. <version>4.3.0</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-api</artifactId>
  52. <version>1.7.24</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.slf4j</groupId>
  57. <artifactId>slf4j-simple</artifactId>
  58. <version>1.7.24</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <artifactId>org.apache.karaf.log.core</artifactId>
  63. <groupId>org.apache.karaf.log</groupId>
  64. <version>4.0.6</version>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.ops4j.pax.logging</groupId>
  69. <artifactId>pax-logging-api</artifactId>
  70. <version>1.8.0</version>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>junit</groupId>
  75. <artifactId>junit</artifactId>
  76. <version>4.8.1</version>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>${project.groupId}</groupId>
  81. <artifactId>opencv</artifactId>
  82. <version>${project.version}</version>
  83. <scope>test</scope>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <directory>../../../build/maven/opencv-it/target</directory>
  88. <testSourceDirectory>src/test/java</testSourceDirectory>
  89. <testOutputDirectory>../../../build/maven/opencv-it/target</testOutputDirectory>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.apache.servicemix.tooling</groupId>
  93. <artifactId>depends-maven-plugin</artifactId>
  94. <version>1.4.0</version>
  95. <executions>
  96. <execution>
  97. <id>generate-depends-file</id>
  98. <goals>
  99. <goal>generate-depends-file</goal>
  100. </goals>
  101. </execution>
  102. </executions>
  103. </plugin>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-surefire-plugin</artifactId>
  107. <version>2.15</version>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>