I'm trying do deploy a web project using seam 1.2.1.GA in GlassFish
I'm using maven to build my project
I deploy my app trough GlassFish Admin Console and try to launch my application and get the error in my browser :
HTTP Status 503
description The requested service () is not currently available.
In log files I have :
PWC1275: Exception sending context initialized event to listener instance of class org.jboss.seam.servlet.SeamListener
java.lang.RuntimeException: Could not create Component: org.jboss.seam.core.ejb
...
Caused by: java.lang.NoClassDefFoundError: Lorg/jboss/ejb3/embedded/EJB3StandaloneDeployer;
...
I have the following depedencies in my POM :
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-seam</artifactId>
<version>1.2.1.GA</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-seam-debug</artifactId>
<version>1.2.1.GA</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>jboss-seam-ui</artifactId>
<version>1.2.1.GA</version>
</dependency>
<dependency>
<groupId>org.jboss.microcontainer</groupId>
<artifactId>thirdparty-all</artifactId>
<version>alpha_9</version>
</dependency>
Is it necessary any other depedency ?
[Message sent by forum member 'ericomtx' (ericomtx)]
http://forums.java.net/jive/thread.jspa?messageID=236277