Re: Maven archetype for Java Application

2021-04-16 Thread Jaroslav Tulach
Dne pátek 16. dubna 2021 11:33:52 CEST, Atrament Black napsal(a): > Since nobody reacted, I checked the source code myself and it seems that it > doesn't use any maven archetype at all, it just creates the folders and the > pom.xml file itself. Is that right? > May I ask what's the reason, and why

Re: Maven archetype for Java Application

2021-04-16 Thread John Mc
Hi Vladimir, Don't forget that in Apache NetBeans when creating a Maven-based project you also have the option there to specify which archetype to use, so users could just use that, as opposed to Apache NetBeans making that choice for them. Regards John On Fri, 16 Apr 2021 at 11:14, Geertjan Wi

Re: Maven archetype for Java Application

2021-04-16 Thread Geertjan Wielenga
Two days is not bad at all. If you know how GitHub works, then you know how to provide pull requests for Apache NetBeans too. Gj On Fri, Apr 16, 2021 at 12:09 PM Vladimír Machat wrote: > The org.apache.maven.archetypes:maven-archetype-quickstart seems to be the > obvious choice, as it is the p

Re: Maven archetype for Java Application

2021-04-16 Thread Vladimír Machat
The org.apache.maven.archetypes:maven-archetype-quickstart seems to be the obvious choice, as it is the preselected archetype when creating the project using mvn archetype:generate and it creates the most basic java application project with hello world example in App.java. I am not sure about

Re: Maven archetype for Java Application

2021-04-16 Thread Geertjan Wielenga
Which Maven archetype should it be using, you're free to provide a pull request that replaces the way it is done right now with a Maven archetype. That might be the right approach indeed. Gj On Fri, Apr 16, 2021 at 11:35 AM Atrament Black wrote: > Since nobody reacted, I checked the source cod

Re: Maven archetype for Java Application

2021-04-16 Thread Atrament Black
Since nobody reacted, I checked the source code myself and it seems that it doesn't use any maven archetype at all, it just creates the folders and the pom.xml file itself. Is that right? May I ask what's the reason, and why it doesn't create the project by calling maven like any other template doe

Maven archetype for Java Application

2021-04-07 Thread Vladimir Machat
Hi, I have been trying to figure out what maven archetype is used when creating a new project choosing Java with Maven - Java Application. I always assumed it was the org.apache.maven.archetypes:maven-archetype-quickstart, but only recently I realised it's not, as it doesn't create the App.j