New issue 18 by edmacdon...@gmail.com: Mistake in tutorial (documentation)
http://code.google.com/p/seam-maven-refimpl/issues/detail?id=18
What steps will reproduce the problem?
1. Read #6 under "Activate Development Mode" on the tutorial
(http://www.glxn.net/seam-maven-refimpl/doc/tutorial/01-gettingstarted.html)
2. In a project created w/ seam-maven-refimpl, make a change and type:
mvn compile -Pexplode
What is the expected output? What do you see instead?
I expect to see in the maven output that the class I changed was copied to
the exploded ear in my JBoss deploy directory
Please provide any additional information below.
I think that instead of:
mvn compile -Pexplode
It should read:
mvn process-classes -Pexplode
In the poms, the explode profile ties the copying of class files to
the "process-classes" phase, not the compile phase.
Sorry if this isn't the proper venue for this. Thanks for
seam-maven-refimpl.