NOTE: This is an unofficial build farm for OpenVINO in Java for Linux, Windows and Mac (x86) and Android (x86 and ARM64)
Setup OpenVINO with Gradle:
repositories {
mavenCentral()
def github = ivy {
url "https://github.com/"
patternLayout {
artifact '/[organisation]/[module]/releases/download/[revision]/openvino-[revision]-[classifier].[ext]'
}
metadataSources { artifact() }
}
exclusiveContent {
forRepositories(github)
filter { includeGroup("dkurt") }
}
}
dependencies {
implementation "dkurt:openvino_java:2024.0:linux-x86_64@jar" // Choose "macosx-x86_64" for Mac or "windows-x86_64" for Windows
}
Or download from releases page.