JDK 17 ist mindestends erforderlich (JAVA_HOME
Umgebungsvariable ist gesetzt und java binaries sind im PATH
)
zu verifizieren via:
echo $JAVA_HOME
echo $PATH
java -version
./mvnw clean verify
Es muss meist nur die pom.xml
in der IDE importiert werden. Es ist wichtig, dass erkannt wird, dass es sich um ein Maven-Projekt handelt.
JDK 17 is required at a minimum (JAVA_HOME
environment variable is set and java binaries are in the PATH
).
To verify, run the following commands:
echo $JAVA_HOME
echo $PATH
java -version
./mvnw clean verify
In most cases, only import the pom.xml
into the IDE. It is important to recognize that this is a Maven project.