forked from bytedeco/javacpp-presets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
30 lines (27 loc) · 936 Bytes
/
pom.xml
File metadata and controls
30 lines (27 loc) · 936 Bytes
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.bytedeco.openvino</groupId>
<artifactId>openvino-sample</artifactId>
<version>1.5.14-SNAPSHOT</version>
<properties>
<exec.mainClass>OpenVINOInfo</exec.mainClass>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>openvino</artifactId>
<version>2025.4.1-1.5.14-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bytedeco</groupId>
<artifactId>openvino</artifactId>
<version>2025.4.1-1.5.14-SNAPSHOT</version>
<classifier>linux-x86_64</classifier>
</dependency>
</dependencies>
<build>
<sourceDirectory>.</sourceDirectory>
</build>
</project>