[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (default-compile) on project paidle-rm: Fatal error compiling: java.lang.StackOverflowError -> [Help 1] If you try compiling your project with maven and got java.lang.StackOverflowError check if you don’t use some extremely long [...]
Andriy Andrunevchyn
It’s not necessary to add compiler plugin to your project when you want to set -source/-target java version. Just add following properties, which are the default property names for the plugin parameters. <properties> <maven.compiler.source>1.8</maven.compiler.source> [...]
Andriy Andrunevchyn
There are few simple steps Create root folder for project Open command line there Execute mvn archetype:generate You will see long list of available archetypes and question at the end Choose a number or apply filter (format: [groupId:]artifactId, case sensitive contains): 1057: Choose appropriate number and proceed with [...]
Andriy Andrunevchyn
Recent Comments