diff --git a/djl-spring-boot-console-sample/pom.xml b/djl-spring-boot-console-sample/pom.xml index 49e3f6e..6f1ecbd 100644 --- a/djl-spring-boot-console-sample/pom.xml +++ b/djl-spring-boot-console-sample/pom.xml @@ -10,7 +10,7 @@ ai.djl.spring.examples djl-spring-boot-console-sample - 0.21-SNAPSHOT + 0.23-SNAPSHOT 11 @@ -20,12 +20,12 @@ ai.djl.spring djl-spring-boot-starter-autoconfigure - 0.21-SNAPSHOT + 0.23-SNAPSHOT ai.djl.spring djl-spring-boot-starter-pytorch-auto - 0.21-SNAPSHOT + 0.23-SNAPSHOT diff --git a/djl-spring-boot-starter-autoconfigure/pom.xml b/djl-spring-boot-starter-autoconfigure/pom.xml index 8e0b4df..69475bc 100644 --- a/djl-spring-boot-starter-autoconfigure/pom.xml +++ b/djl-spring-boot-starter-autoconfigure/pom.xml @@ -4,11 +4,11 @@ ai.djl.spring djl-spring-boot-starter-parent - 0.21-SNAPSHOT + 0.23-SNAPSHOT ../djl-spring-boot-starter-parent djl-spring-boot-starter-autoconfigure - 0.21-SNAPSHOT + 0.23-SNAPSHOT djl-spring-boot-starter-autoconfigure DJL Spring Boot starter project @@ -27,7 +27,7 @@ ai.djl.spring djl-spring-boot-starter-mxnet-auto - 0.21-SNAPSHOT + 0.23-SNAPSHOT test diff --git a/djl-spring-boot-starter-mxnet-auto/pom.xml b/djl-spring-boot-starter-mxnet-auto/pom.xml index f6fa301..a70fa20 100644 --- a/djl-spring-boot-starter-mxnet-auto/pom.xml +++ b/djl-spring-boot-starter-mxnet-auto/pom.xml @@ -4,7 +4,7 @@ ai.djl.spring djl-spring-boot-starter-parent - 0.21-SNAPSHOT + 0.23-SNAPSHOT ../djl-spring-boot-starter-parent djl-spring-boot-starter-mxnet-auto diff --git a/djl-spring-boot-starter-mxnet-linux-x86_64/pom.xml b/djl-spring-boot-starter-mxnet-linux-x86_64/pom.xml index d0bb2a8..c3847ff 100644 --- a/djl-spring-boot-starter-mxnet-linux-x86_64/pom.xml +++ b/djl-spring-boot-starter-mxnet-linux-x86_64/pom.xml @@ -4,7 +4,7 @@ ai.djl.spring djl-spring-boot-starter-parent - 0.21-SNAPSHOT + 0.23-SNAPSHOT ../djl-spring-boot-starter-parent djl-spring-boot-starter-mxnet-linux-x86_64 diff --git a/djl-spring-boot-starter-mxnet-osx-x86_64/pom.xml b/djl-spring-boot-starter-mxnet-osx-x86_64/pom.xml index 341d0a2..41de56e 100644 --- a/djl-spring-boot-starter-mxnet-osx-x86_64/pom.xml +++ b/djl-spring-boot-starter-mxnet-osx-x86_64/pom.xml @@ -4,7 +4,7 @@ ai.djl.spring djl-spring-boot-starter-parent - 0.21-SNAPSHOT + 0.23-SNAPSHOT ../djl-spring-boot-starter-parent djl-spring-boot-starter-mxnet-osx-x86_64 diff --git a/djl-spring-boot-starter-parent/pom.xml b/djl-spring-boot-starter-parent/pom.xml index 7dab17a..33bf725 100644 --- a/djl-spring-boot-starter-parent/pom.xml +++ b/djl-spring-boot-starter-parent/pom.xml @@ -10,7 +10,7 @@ ai.djl.spring djl-spring-boot-starter-parent - 0.21-SNAPSHOT + 0.23-SNAPSHOT djl-spring-boot-starter-parent DJL starter project for Spring Boot pom @@ -34,7 +34,7 @@ - 0.21.0 + 0.23.0 11 3.1.1 3.1.0 diff --git a/djl-spring-boot-starter-pytorch-auto/pom.xml b/djl-spring-boot-starter-pytorch-auto/pom.xml index a69b484..d14abc6 100644 --- a/djl-spring-boot-starter-pytorch-auto/pom.xml +++ b/djl-spring-boot-starter-pytorch-auto/pom.xml @@ -4,7 +4,7 @@ ai.djl.spring djl-spring-boot-starter-parent - 0.21-SNAPSHOT + 0.23-SNAPSHOT ../djl-spring-boot-starter-parent djl-spring-boot-starter-pytorch-auto diff --git a/djl-spring-boot-starter-tensorflow-auto/pom.xml b/djl-spring-boot-starter-tensorflow-auto/pom.xml index 3d6adf7..2eba310 100644 --- a/djl-spring-boot-starter-tensorflow-auto/pom.xml +++ b/djl-spring-boot-starter-tensorflow-auto/pom.xml @@ -4,7 +4,7 @@ ai.djl.spring djl-spring-boot-starter-parent - 0.21-SNAPSHOT + 0.23-SNAPSHOT ../djl-spring-boot-starter-parent djl-spring-boot-starter-tensorflow-auto diff --git a/docs/walkthrough/getting-started.html b/docs/walkthrough/getting-started.html index a03940b..aeb4eea 100644 --- a/docs/walkthrough/getting-started.html +++ b/docs/walkthrough/getting-started.html @@ -170,7 +170,7 @@

4. Simple Application Walkthrough

> ../mvnw spring-boot:run

Alternatively you can run it directly with java -jar command:

-
java -jar target/djl-spring-boot-console-sample-0.21-SNAPSHOT.jar +
java -jar target/djl-spring-boot-console-sample-0.23-SNAPSHOT.jar

5. More Complex Application Example

Code Examples based on REST API example leveraging DJL Spring Boot Starter demonstrates a RESTful API that can take images from Amazon S3 bucket and stores the object detection results back in S3. This API represents a microservice capable of taking any image reference (uploaded to the predefined Amazon S3 bucket) and run object detection on it. This API could be leveraged directly through REST API clients like Postman, or within a mobile or web application.

diff --git a/docs/walkthrough/getting-started.md b/docs/walkthrough/getting-started.md index 3aae724..42c9c6d 100644 --- a/docs/walkthrough/getting-started.md +++ b/docs/walkthrough/getting-started.md @@ -221,7 +221,7 @@ Assuming you have checked out the repository and are now in the root of the repo Alternatively you can run it directly with `java -jar` command: ``` - java -jar target/djl-spring-boot-console-sample-0.21-SNAPSHOT.jar + java -jar target/djl-spring-boot-console-sample-0.23-SNAPSHOT.jar ``` ## 5. More Complex Application Example diff --git a/pom.xml b/pom.xml index 505c30d..bb7c86e 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 ai.djl.spring djl-spring-boot-starter-project - 0.21-SNAPSHOT + 0.23-SNAPSHOT djl-spring-boot-starter-project DJL starter project for Spring Boot pom