Added more comments to pom.xml

This commit is contained in:
Konrad Neitzel 2022-11-11 15:22:11 +01:00
parent 15a541e8c3
commit 93e7cbc7e7

19
pom.xml
View File

@ -4,15 +4,19 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<!-- Edit these to match your project -->
<groupId>de.kneitzel</groupId> <groupId>de.kneitzel</groupId>
<artifactId>javaapp</artifactId> <artifactId>javaapp</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<!-- Modify or remove -->
<organization> <organization>
<name>Java Forum</name> <name>Java Forum</name>
</organization> </organization>
<!-- Properties of the project - Configuration is done here -->
<properties> <properties>
<!-- Application Properties --> <!-- Application Properties -->
<link.name>${project.artifactId}</link.name> <link.name>${project.artifactId}</link.name>
<launcher>${project.artifactId}</launcher> <launcher>${project.artifactId}</launcher>
@ -85,10 +89,13 @@
<version>${jetbrains.annotations.version}</version> <version>${jetbrains.annotations.version}</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<!-- Add your dependencies here if required -->
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<!-- Enforcer to enforce min Maven version --> <!-- Enforcer to enforce min Maven version -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@ -111,7 +118,7 @@
</executions> </executions>
</plugin> </plugin>
<!-- Compiler including Lobok --> <!-- Compiler including Lombok -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
@ -280,6 +287,12 @@
</build> </build>
<profiles> <profiles>
<!-- Profile that adds compiling to a native binary using
GraalVM an Native Image https://www.graalvm.org/
Add -PGraalVM or -DGraalVM to use this profile.
-->
<profile> <profile>
<id>GraalVM</id> <id>GraalVM</id>
<activation> <activation>
@ -319,6 +332,10 @@
</build> </build>
</profile> </profile>
<!-- Profile that adds JLink and JPackage runs.
Add -PImage or -DImage to use this profile.
-->
<profile> <profile>
<id>Image</id> <id>Image</id>
<activation> <activation>