Skip to content

Commit 1e445ec

Browse files
authored
Merge pull request #5 from barrypitman/codex/review-and-address-pr-comments
OpenVINO: add macosx-arm64 platform, simplify sample, and include platform artifact
2 parents bef2f6d + 8817d8a commit 1e445ec

3 files changed

Lines changed: 13 additions & 18 deletions

File tree

openvino/platform/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@
3636
<version>${project.version}</version>
3737
<classifier>${javacpp.platform.linux-x86_64}</classifier>
3838
</dependency>
39+
<dependency>
40+
<groupId>${project.groupId}</groupId>
41+
<artifactId>${javacpp.moduleId}</artifactId>
42+
<version>${project.version}</version>
43+
<classifier>${javacpp.platform.macosx-arm64}</classifier>
44+
</dependency>
3945
<dependency>
4046
<groupId>${project.groupId}</groupId>
4147
<artifactId>${javacpp.moduleId}</artifactId>

openvino/samples/pom.xml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,8 @@
1313
<dependencies>
1414
<dependency>
1515
<groupId>org.bytedeco</groupId>
16-
<artifactId>opencl</artifactId>
17-
<version>3.0-1.5.14-SNAPSHOT</version>
18-
</dependency>
19-
<dependency>
20-
<groupId>org.bytedeco</groupId>
21-
<artifactId>opencl</artifactId>
22-
<version>3.0-1.5.14-SNAPSHOT</version>
23-
<classifier>linux-x86_64</classifier>
24-
</dependency>
25-
<dependency>
26-
<groupId>org.bytedeco</groupId>
27-
<artifactId>openvino</artifactId>
28-
<version>2026.1.0-1.5.14-SNAPSHOT</version>
29-
</dependency>
30-
<dependency>
31-
<groupId>org.bytedeco</groupId>
32-
<artifactId>openvino</artifactId>
16+
<artifactId>openvino-platform</artifactId>
3317
<version>2026.1.0-1.5.14-SNAPSHOT</version>
34-
<classifier>linux-x86_64</classifier>
3518
</dependency>
3619
</dependencies>
3720

platform/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
<!-- <module>../depthai/platform</module>-->
6767
<module>../onnx/platform</module>
6868
<!-- <module>../ngraph/platform</module>-->
69+
<module>../openvino/platform</module>
6970
<module>../onnxruntime/platform</module>
7071
<!-- <module>../tvm/platform</module>-->
7172
<!-- <module>../bullet/platform</module>-->
@@ -339,6 +340,11 @@
339340
<!-- <artifactId>ngraph-platform</artifactId>-->
340341
<!-- <version>0.26.0-${project.version}</version>-->
341342
<!-- </dependency>-->
343+
<dependency>
344+
<groupId>org.bytedeco</groupId>
345+
<artifactId>openvino-platform</artifactId>
346+
<version>2026.1.0-${project.version}</version>
347+
</dependency>
342348
<dependency>
343349
<groupId>org.bytedeco</groupId>
344350
<artifactId>onnxruntime-platform</artifactId>

0 commit comments

Comments
 (0)