pom.xml 1.98 KB
Newer Older
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 5
    <groupId>org.opencv</groupId>
    <artifactId>opencv-parent</artifactId>
Alexander Alekhin's avatar
Alexander Alekhin committed
6
    <version>3.4.3</version>
7 8
    <packaging>pom</packaging>
    <name>OpenCV Parent POM</name>
9 10 11
    <licenses>
        <license>
            <name>License Agreement For Open Source Computer Vision Library (3-clause BSD License)</name>
12
            <url>http://opencv.org/license.html</url>
13 14 15 16
        </license>
    </licenses>
    <url>http://opencv.org/</url>
    <scm>
17 18
        <connection>scm:git:https://github.com/opencv/opencv.git</connection>
        <url>https://github.com/opencv/opencv</url>
19 20 21 22 23 24 25 26 27
    </scm>
    <contributors>
        <contributor>
            <name>Kerry Billingham</name>
            <email>contact (at) AvionicEngineers (d0t) c(0)m</email>
            <organization>Java Technics</organization>
            <url>www.javatechnics.com</url>
        </contributor>
    </contributors>
28

29 30
    <properties>
        <nativelibrary.name>libopencv_java${lib.version.string}.so</nativelibrary.name>
31
        <pax.exam.version>4.8.0</pax.exam.version>
32 33
        <maven.compiler.source>1.7</maven.compiler.source>
        <maven.compiler.target>1.7</maven.compiler.target>
34
        <download.cmake>false</download.cmake>
35 36 37 38 39 40 41
    </properties>
    <distributionManagement>
        <snapshotRepository>
            <id>${repo.name}</id>
            <url>${repo.url}</url>
        </snapshotRepository>
    </distributionManagement>
42 43 44 45

    <modules>
        <module>opencv</module>
    </modules>
46 47 48 49 50 51 52 53 54 55 56
    <profiles>
        <profile>
            <id>integration</id>
            <activation>
                <activeByDefault>false</activeByDefault>
            </activation>
            <modules>
                <module>opencv-it</module>
            </modules>
        </profile>
    </profiles>
57
</project>