2022-09-20 15:40:53 +02:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
id 'maven-publish'
|
|
|
|
id 'signing'
|
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
|
|
|
buildTarget = rootProject.ext.buildTarget
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation projects.cavisNative.cavisNativeBlas
|
|
|
|
implementation projects.cavisNative.cavisNativeCommon
|
|
|
|
implementation projects.cavisDnn.cavisDnnApi
|
|
|
|
implementation projects.cavisDnn.cavisDnnCommon
|
|
|
|
|
2022-10-07 15:04:30 +02:00
|
|
|
|
2022-09-20 15:40:53 +02:00
|
|
|
implementation (projects.cavisNative.cavisNativeLib) {
|
|
|
|
capabilities {
|
2022-10-07 15:04:30 +02:00
|
|
|
it.requireCapability group: "net.brutex.cavis.cavis-native", name:"cavis-native-lib-cpu-support", version: project.version
|
2022-09-20 15:40:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
implementation "org.bytedeco:javacpp"
|
|
|
|
implementation group:"org.bytedeco", name:"javacpp", classifier:"${buildTarget}"
|
|
|
|
implementation "org.bytedeco:openblas"
|
|
|
|
implementation group:"org.bytedeco", name:"openblas", classifier:"${buildTarget}"
|
|
|
|
|
|
|
|
implementation "com.google.flatbuffers:flatbuffers-java"
|
|
|
|
implementation "org.slf4j:slf4j-api"
|
|
|
|
implementation "org.apache.commons:commons-math3"
|
|
|
|
}
|