From ef4fedd441884bf08667eac4ac3fc969b1a7dfcf Mon Sep 17 00:00:00 2001 From: Konrad Neitzel Date: Thu, 9 May 2024 22:31:09 +0200 Subject: [PATCH] Update documentation to correct Maven profile name The profile name in the documentation was updated from 'Image' to 'image' to match the actual Maven profile name. The changes were made in both English and German versions of the documentation to ensure the accuracy of the build instruction. --- documentation/de/ImageCreation.md | 14 +++++++------- documentation/en/ImageCreation.md | 12 ++++++------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/documentation/de/ImageCreation.md b/documentation/de/ImageCreation.md index a4e59b5..a1cf246 100644 --- a/documentation/de/ImageCreation.md +++ b/documentation/de/ImageCreation.md @@ -11,25 +11,25 @@ werden kann. ## Aufruf -Um das Image zu bauen, ist Maven mit dem Profil Image und dem Ziel install zu starten. +Um das Image zu bauen, ist Maven mit dem Profil image und dem Ziel install zu starten. Da es teilweise zu Problemen kommt, wenn Dateien überschrieben werden müssen, sollte als Erstes ein clean durchlaufen. Dies kann in einem Durchlauf erfolgen: ```shell -mvnw -PImage clean install +mvnw -Pimage clean install ``` -## Beschreibung des Image Profils +## Beschreibung des image Profils ### Das Profil ```xml - Image + image - Image + image @@ -42,8 +42,8 @@ mvnw -PImage clean install ``` -- Das Profil hat eine Id: Image. Damit ist es möglich, das Profil über -PImage auszuwählen. -- Durch die activation Property ist es zusätzlich möglich, das Profil auch über ein Define auszuwählen: -DImage +- Das Profil hat eine Id: image. Damit ist es möglich, das Profil über -Pimage auszuwählen. +- Durch die activation Property ist es zusätzlich möglich, das Profil auch über ein Define auszuwählen: -Dimage - In dem Profil selbst sind dann Plugins untergebracht. ### maven-dependency-plugin diff --git a/documentation/en/ImageCreation.md b/documentation/en/ImageCreation.md index 35f53e0..09dfac7 100644 --- a/documentation/en/ImageCreation.md +++ b/documentation/en/ImageCreation.md @@ -9,12 +9,12 @@ Creation of an "image": A directory structure with files along with a binary tha ## Invocation -To build the image, start Maven with the Image profile and the install goal. +To build the image, start Maven with the image profile and the install goal. Since there are sometimes problems when files need to be overwritten, a clean should be run first. This can be done in one run: ```shell -mvnw -PImage clean install +mvnw -Pimage clean install ``` ## Description of theImage Profile @@ -23,10 +23,10 @@ mvnw -PImage clean install ```xml - Image + image - Image + image @@ -39,8 +39,8 @@ mvnw -PImage clean install ``` -- The profile has an ID: Image. This allows the profile to be selected using -PImage. -- Additionally, the profile can be selected using a define: -DImage +- The profile has an ID: image. This allows the profile to be selected using -Pimage. +- Additionally, the profile can be selected using a define: -Dimage - The profile itself then contains plugins. ### maven-dependency-plugin