I have downloaded AppFuse version 3.0 following the quick start guide here: http://appfuse.org/display/APF/AppFuse+QuickStart
my set up string is this: mvn archetype:generate -B -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifactId=appfuse-basic-spring-archetype -DarchetypeVersion=3.0.0 -DgroupId=com.mycompany -DartifactId=myproject -DarchetypeRepository=https://oss.sonatype.org/content/repositories/appfuse
I am able to also successfully run: mvn appfuse:full-source
The application then starts fine with: mvn jetty:run
I then can successfully run: mvn package
Here is where the good luck runs out...
When I try to deploy the resulting .war to Tomcat 8, it doesn't deploy. No error message, it just goes to the generic "problem loading page" message. Upon checking tomcat logs, I see no error messages. Tomcat is still running happily with no reference to a failed deployment.
Is there a step I am missing?