Renamed Profile to image (lowercase i)

This commit is contained in:
Konrad Neitzel 2024-05-09 21:22:47 +02:00
parent aa3e302a32
commit 9713d79d52
3 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,7 @@ Um die Anwendung zu übersetzen kannst Du aufrufen:
Um das Image zu bauen, rufst du einfach Maven mit dem Profil Image und dem
Ziel install auf:
```./mvnw -DImage install```
```./mvnw -Dimage install```
**Wichtig** Du kannst nicht das JavaFX Plugin mit dem Ziel javafx:jlink verwenden,
da dieses Plugin zwingend eine Modulbeschreibung für das Projekt und alle

View File

@ -28,7 +28,7 @@ to build the application.
### Build the Image
To build the image, the profile Image must be used:
```./mvnw -DImage install```
```./mvnw -Dimage install```
**Important** You cannot build an image using the javafx plugin. The javafx plugin requires that you build a modular
Java application and all dependencies providing a module description.

View File

@ -288,13 +288,13 @@
<!-- Profile that adds JLink and JPackage runs.
Add -PImage or -DImage to use this profile.
Add -Pimage or -Dimage to use this profile.
-->
<profile>
<id>Image</id>
<id>image</id>
<activation>
<property>
<name>Image</name>
<name>image</name>
</property>
</activation>
<build>