e5bf9264d3c312366048844470b314cf588e12ac
[platform/upstream/opencv.git] / platforms / maven / pom.xml
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>3.4.18</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 (3-clause BSD 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
29     <properties>
30         <nativelibrary.name>libopencv_java${lib.version.string}.so</nativelibrary.name>
31         <pax.exam.version>4.8.0</pax.exam.version>
32         <maven.compiler.source>1.7</maven.compiler.source>
33         <maven.compiler.target>1.7</maven.compiler.target>
34         <download.cmake>false</download.cmake>
35     </properties>
36     <distributionManagement>
37         <snapshotRepository>
38             <id>${repo.name}</id>
39             <url>${repo.url}</url>
40         </snapshotRepository>
41     </distributionManagement>
42
43     <modules>
44         <module>opencv</module>
45     </modules>
46     <profiles>
47         <profile>
48             <id>integration</id>
49             <activation>
50                 <activeByDefault>false</activeByDefault>
51             </activation>
52             <modules>
53                 <module>opencv-it</module>
54             </modules>
55         </profile>
56     </profiles>
57 </project>