pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>org.opencv</groupId>
  5. <artifactId>opencv-parent</artifactId>
  6. <version>4.5.5</version>
  7. <packaging>pom</packaging>
  8. <name>OpenCV Parent POM</name>
  9. <licenses>
  10. <license>
  11. <name>License Agreement For Open Source Computer Vision Library (Apache 2.0 License)</name>
  12. <url>http://opencv.org/license.html</url>
  13. </license>
  14. </licenses>
  15. <url>http://opencv.org/</url>
  16. <scm>
  17. <connection>scm:git:https://github.com/opencv/opencv.git</connection>
  18. <url>https://github.com/opencv/opencv</url>
  19. </scm>
  20. <contributors>
  21. <contributor>
  22. <name>Kerry Billingham</name>
  23. <email>contact (at) AvionicEngineers (d0t) c(0)m</email>
  24. <organization>Java Technics</organization>
  25. <url>www.javatechnics.com</url>
  26. </contributor>
  27. </contributors>
  28. <properties>
  29. <nativelibrary.name>libopencv_java${lib.version.string}.so</nativelibrary.name>
  30. <pax.exam.version>4.8.0</pax.exam.version>
  31. <maven.compiler.source>1.7</maven.compiler.source>
  32. <maven.compiler.target>1.7</maven.compiler.target>
  33. <download.cmake>false</download.cmake>
  34. </properties>
  35. <distributionManagement>
  36. <snapshotRepository>
  37. <id>${repo.name}</id>
  38. <url>${repo.url}</url>
  39. </snapshotRepository>
  40. </distributionManagement>
  41. <modules>
  42. <module>opencv</module>
  43. </modules>
  44. <profiles>
  45. <profile>
  46. <id>integration</id>
  47. <activation>
  48. <activeByDefault>false</activeByDefault>
  49. </activation>
  50. <modules>
  51. <module>opencv-it</module>
  52. </modules>
  53. </profile>
  54. </profiles>
  55. </project>