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 Um das Image zu bauen, rufst du einfach Maven mit dem Profil Image und dem
Ziel install auf: Ziel install auf:
```./mvnw -DImage install``` ```./mvnw -Dimage install```
**Wichtig** Du kannst nicht das JavaFX Plugin mit dem Ziel javafx:jlink verwenden, **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 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 ### Build the Image
To build the image, the profile Image must be used: 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 **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. Java application and all dependencies providing a module description.

View File

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