-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
36 lines (32 loc) · 1.54 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>opencv-freenect</groupId>
<artifactId>opencv-freenect</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<opencv.version>246</opencv.version>
<!-- TODO change the following paths with your own ones. -->
<opencv.jar.path>/home/edaubert/bin/opencv/share/OpenCV/java/opencv-246.jar</opencv.jar.path>
<opencv.library.path>/home/edaubert/bin/opencv/share/OpenCV/java/</opencv.library.path>
<freenect.library.path>/home/edaubert/bin/freenect/lib/</freenect.library.path>
</properties>
<dependencies>
<!-- You must create the maven artifact from freenect. See openkinect web site for more information -->
<dependency>
<groupId>org.openkinect</groupId>
<artifactId>freenect</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<!-- There is no maven artifact for opencv. You must define the complete path of the jar. -->
<dependency>
<groupId>org.opencv</groupId>
<artifactId>opencv</artifactId>
<version>${opencv.version}</version>
<scope>system</scope>
<systemPath>${opencv.jar.path}</systemPath>
</dependency>
</dependencies>
</project>