Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: "Create" is deprecated; not everything will be copied/etc. correctly if "create" is used. As per my questions on maven-user, "generate" is the correct, current methodology.

...

Code Block
$ mvn archetype:creategenerate -B \
                         -DgroupId=tutorial \
                         -DartifactId=tutorial \
                         -DarchetypeGroupId=org.apache.struts \
                         -DarchetypeArtifactId=struts2-archetype-blank \
                         -DarchetypeVersion=2.1.6
$ ls
tutorial/
$ cd tutorial
$ ls
pom.xml         src/

...