Re: Crashes while running "Maven In Five Minutes"

2018-12-09 Thread Hervé BOUTEMY
thank you, merged regarding setting target Java Version as parameter, in theory this is a good idea, but in practice, IMHO it makes the archetype more complex: people will modify pom.xml when they want Regards, Hervé Le dimanche 9 décembre 2018, 07:02:52 CET Bernd Eckenfels a écrit : > I

Re: Crashes while running "Maven In Five Minutes"

2018-12-08 Thread Bernd Eckenfels
List Betreff: Re: Crashes while running "Maven In Five Minutes" Thank you for the report: yes, this should be improved to work in current latest version of everything I updated the command line to use version 1.3 of maven-archetype-quickstart, which is the latest version and compiles w

Re: Crashes while running "Maven In Five Minutes"

2018-12-07 Thread Hervé BOUTEMY
Thank you for the report: yes, this should be improved to work in current latest version of everything I updated the command line to use version 1.3 of maven-archetype-quickstart, which is the latest version and compiles with Java 7 target. Unfortunately, when build with Java 11, the build now

Re: Crashes while running "Maven In Five Minutes"

2018-12-04 Thread Michael Osipov
Am 2018-12-03 um 15:56 schrieb Steve Ramage:> If I follow the steps listed here (https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html) : > > > > mkdir scratch; pushd scratch; mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app

Crashes while running "Maven In Five Minutes"

2018-12-03 Thread Steve Ramage
If I follow the steps listed here (https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html) :  mkdir scratch; pushd scratch; mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false; cd