+++ This bug was initially created as a clone of Bug #869662 +++ Description of problem: 1. The jee6 Seam2.3 example shows compile errors in the jee6-test module when imported into the JBDS. The problem is that the test module depends on the classes from the war and so uses the build-helper-maven-plugin to copy the classes (as a maven dependency on a .war artifact doesn't get its classes) The workaround for this issue is to do a quickfix - fix project config - and do the Eclipse-suggested action "Add project 'jee6-web' to build path of 'jee6-tests'". This workaround should probably be added to the example readme file. 2. Running the app from JBDS deploys the example as "'jee6-web.war'", while opening a page "http://localhost:8080/jboss-seam-jee6/", which gets 404, as the context root is jee6-web. Also, the JNDI name is wrong in this case, so the EJBs don't work if the example is deployed from JBDS. Workaround for this problem would be to change the artifactId to be the same as the finalName (btw. all the .war examples have this problem) Version-Release number of selected component (if applicable): jboss-seam-2.3.0.Final-redhat-1 JBDS 5.0.1 and JBDS 6.0.0.Beta1
1. I replaced build-helper-maven plugin with this solution: http://stackoverflow.com/questions/1769586/maven-war-dependency Now it shouldn't show any compile error in any IDE. 2. I replaced finalName with the artifactId for all war examples.
Distributed as a part of WFK 2.1.0.GA release.