I would like to create a web project Maven 2 + Struts 1. Someone Would there be a tutorial or a website outlining the steps? Thank you. ;)
A:
Are you searching for a tutorial on Maven 2 or on Struts ? mvn archetype:generate should be your friend. Take a look into the docs about archetype.
khmarbaise
2010-06-17 09:22:43
searching for a tutorial on Maven 2 using archetype struts
Mercer
2010-06-17 09:29:46
A:
There is a Struts 1 Blank Archetype for Maven 2:
$ mvn archetype:create \
-DarchetypeGroupId=org.apache.struts \
-DarchetypeArtifactId=struts-archetype-blank \
-DarchetypeVersion=1.3.5 \
-DgroupId=com.example \
-DpackageName=com.example.projectname \
-DartifactId=my-webapp
Pascal Thivent
2010-06-17 13:04:40