Skip to content

Commit

Permalink
Include all engines in djl-serving (#886)
Browse files Browse the repository at this point in the history
Change-Id: I673edf4bf32b881b58fb4161e2d3316d6109c665
  • Loading branch information
frankfliu authored Apr 21, 2021
1 parent 0d4a708 commit 05ad89a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions serving/serving/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ dependencies {
implementation "org.slf4j:slf4j-api:${slf4j_version}"
implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.12.1"
implementation project(":api")
implementation project(":mxnet:mxnet-engine")

runtimeOnly "ai.djl.mxnet:mxnet-native-auto:${mxnet_version}"
runtimeOnly project(':model-zoo')
runtimeOnly project(':mxnet:mxnet-model-zoo')
runtimeOnly project(':tensorflow:tensorflow-model-zoo')
runtimeOnly project(':pytorch:pytorch-model-zoo:')

implementation project(':model-zoo')
implementation project(':mxnet:mxnet-model-zoo')
implementation project(':tensorflow:tensorflow-model-zoo')
implementation project(':pytorch:pytorch-model-zoo:')
runtimeOnly "ai.djl.mxnet:mxnet-native-auto:${mxnet_version}"
runtimeOnly "ai.djl.pytorch:pytorch-native-auto:${pytorch_version}"
runtimeOnly "ai.djl.tensorflow:tensorflow-native-auto:${tensorflow_version}"

testImplementation("org.testng:testng:${testng_version}") {
exclude group: "junit", module: "junit"
Expand Down

0 comments on commit 05ad89a

Please sign in to comment.