Migrate project to Gradle
* Upgrade all the dependencies to the latest versions * Fix some incompatibilities * Fix some warnings
This commit is contained in:
18
function/object-detection-function/build.gradle
Normal file
18
function/object-detection-function/build.gradle
Normal file
@@ -0,0 +1,18 @@
|
||||
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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user