Why maven requires so many options to create a hello world project,can you recommend a more dedicate
Posted
by user198729
on Stack Overflow
See other posts from Stack Overflow
or by user198729
Published on 2010-05-11T15:59:15Z
Indexed on
2010/05/11
16:24 UTC
Read the original article
Hit count: 223
java
|build-process
Quoted from here:
mvn archetype:generate -DgroupId=org.sonatype.mavenbook.simple \
-DartifactId=simple \
-DpackageName=org.sonatype.mavenbook \
-Dversion=1.0-SNAPSHOT
And I also have to specify an archetype number...
It seems that maven isn't satisfied to be just a Java build tool,but want to control all aspect of developing...
Can someone recommend a really dedicated build tool for Java?
© Stack Overflow or respective owner