From e6bd76b539fedbf9267031539f5459438cd555cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de> Date: Fri, 7 Jan 2022 12:56:17 +0100 Subject: [PATCH] Fix version in Readme --- theodolite/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/theodolite/README.md b/theodolite/README.md index 60bd56d93..521f6aeba 100644 --- a/theodolite/README.md +++ b/theodolite/README.md @@ -29,7 +29,7 @@ The application can be packaged using: ./gradlew build ``` -It produces the `theodolite-1.0.0-SNAPSHOT-runner.jar` file in the `/build` directory. Be aware that it’s not +It produces the `theodolite-0.6.0-SNAPSHOT-runner.jar` file in the `/build` directory. Be aware that it’s not an _über-jar_ as the dependencies are copied into the `build/lib` directory. If you want to build an _über-jar_, execute the following command: @@ -38,7 +38,7 @@ If you want to build an _über-jar_, execute the following command: ./gradlew build -Dquarkus.package.type=uber-jar ``` -The application is now runnable using `java -jar build/theodolite-1.0.0-SNAPSHOT-runner.jar`. +The application is now runnable using `java -jar build/theodolite-0.6.0-SNAPSHOT-runner.jar`. ## Creating a native executable @@ -57,7 +57,7 @@ Or, if you don't have GraalVM installed, you can run the native executable build ``` You can then execute your native executable with: -```./build/theodolite-1.0.0-SNAPSHOT-runner``` +```./build/theodolite-0.6.0-SNAPSHOT-runner``` If you want to learn more about building native executables, please consult <https://quarkus.io/guides/gradle-tooling>. -- GitLab