Files
spring-functions-catalog/function/object-detection-function/build.gradle
Artem Bilan 19f904eb66 Migrate project to Gradle
* Upgrade all the dependencies to the latest versions
* Fix some incompatibilities
* Fix some warnings
2023-11-23 15:45:29 -05:00

18 lines
309 B
Groovy

plugins {
id 'com.google.protobuf' version '0.9.4'
}
ext {
protobufVersion='3.25.1'
}
dependencies {
api project(':tensorflow-common')
api "com.google.protobuf:protobuf-java:$protobufVersion"
}
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:$protobufVersion"
}
}