1 Reply Latest reply on Oct 14, 2011 11:39 AM by aslak

    Getting Weld-ee on 1.0.0.CR5

    viniciuscarvalho

      Hi there! I've been trying arquillian for 1 week now. It's the coolest and hardest project to use I've ever seen

       

      I'm trying to get my tests running, and several topics here show that.

       

      I finally managed to get jboss-7 embedded working, using examples from https://github.com/kpiwko/blog/blob/master/drone-selenium/pom.xml

       

      But I'm not being able to run weld-ee anymore.

       

      I have no idea what happened:

       

      Here's my arquillian.xml

       

       

      <arquillian xmlns="http://jboss.com/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
          <engine>
              <property name="deploymentExportPath">target/</property>
          </engine>
          <container qualifier="weld-ee-embedded" default="true">
          </container>
       </arquillian>
      
      

       

       

      But after running the tests I got a problem:

       

      org.jboss.arquillian.container.test.impl.client.deployment.ValidationException: DeploymentScenario contains targets not matching any defined Container in the registry. weld-ee-embedded. Possible causes are: No Deployable Container found on Classpath or your have defined a @org.jboss.arquillian.container.test.api.Deployment with a @org.jboss.arquillian.container.test.api.TargetsContainer value that does not match any found/configured Containers (see arquillian.xml container@qualifier)

       

       

      Really don't understand, the container is there. Why is this not working?

       

      Regards