10 Replies Latest reply on Jun 2, 2014 9:41 AM by kwintesencja

    Arquillian Jacoco hangs beforeUndeploy

    kwintesencja

      Hi guys,

       

      i'm trying to use jacoco extension for test coverage but my test "freezes" on undeploy phase

       

      (E) AfterClass
              (I) TestContextHandler.createSuiteContext
              (I) TestContextHandler.createClassContext
              (E) TestClass
              (O) ClientBeforeAfterLifecycleEventExecuter.on
              (O) ContainerEventController.execute
              (E) ContainerMultiControlEvent
                      (O) ContainerDeployController.undeployManaged
                      (E) UnDeployDeployment
                              (I) ContainerDeploymentContextHandler.createContainerContext
                              (I) ContainerDeploymentContextHandler.createDeploymentContext
                              (O) ContainerDeployController.undeploy
                              (E) BeforeUnDeploy
                                      (O) DroneLifecycleManager.beforeUndeploy
      
      

       

      my jacoco profile is the following

       

      <profile>
                  <id>jacoco</id>
                  <properties>
                      <jacoco.version>0.7.1.201405082137</jacoco.version>
                  </properties>
                  <dependencies>
                      <dependency>
                          <groupId>org.jboss.arquillian.extension</groupId>
                          <artifactId>arquillian-jacoco</artifactId>
                          <version>1.0.0.Alpha6</version>
                          <scope>test</scope>
                      </dependency>
                      <dependency>
                          <groupId>org.jacoco</groupId>
                          <artifactId>org.jacoco.core</artifactId>
                          <version>${jacoco.version}</version>
                          <scope>test</scope>
                      </dependency>
                  </dependencies>
                  <build>
                      <plugins>
                          <plugin>
                              <groupId>org.jacoco</groupId>
                              <artifactId>jacoco-maven-plugin</artifactId>
                              <version>${jacoco.version}</version>
                              <executions>
                                  <execution>
                                      <goals>
                                          <goal>prepare-agent</goal>
                                      </goals>
                                  </execution>
                                  <execution>
                                      <id>report</id>
                                      <phase>prepare-package</phase>
                                      <goals>
                                          <goal>report</goal>
                                      </goals>
                                  </execution>
                              </executions>
                          </plugin>
                          <plugin>
                              <!-- only white box tests generate coverage data-->
                              <groupId>org.apache.maven.plugins</groupId>
                              <artifactId>maven-surefire-plugin</artifactId>
                              <version>2.16</version>
                              <configuration>
                                  <skipTests>false</skipTests>
                                  <includes>
                                      <include>**/*HelloArquillianIt.java</include>
                                  </includes>
                                  <excludes>
                                      <exclude>**/*BaseIt.java</exclude>
                                  </excludes>
                              </configuration>
                          </plugin>
                      </plugins>
                  </build>
              </profile>
      
      

      :

       

      the test is very siimple:

       

      archetype/src/test/java/org/conventions/archetype/test/it/HelloArquillianIt.java at master · conventions/archetype · Git…

       

      as i see in debug it looks like drone lifecycle is interfering, i've tried drone 2.0.0.Alpha1, 2.0.0.Alpha2 and 1.3.0

       

      the project is avaiable here and the command im running is: mvn clean install -Pwildfly-managed -Pjacoco  -Darquillian.debug=true

       

      here is the console output:

       

      C:\projetos\arch\archetype>mvn clean install -Pwildfly-managed -Pjacoco -Darquillian.debug=true
      [INFO] Scanning for projects...
      [INFO]
      [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
      [INFO]
      [INFO] ------------------------------------------------------------------------
      [INFO] Building conventions-archetype 1.0-SNAPSHOT
      [INFO] ------------------------------------------------------------------------
      [INFO]
      [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ archetype ---
      [INFO] Deleting C:\projetos\arch\archetype\target
      [INFO]
      [INFO] --- jacoco-maven-plugin:0.7.1.201405082137:prepare-agent (default) @ archetype ---
      [INFO] argLine set to -javaagent:C:\\Users\\rafael-pestano\\.m2\\repository\\org\\jacoco\\org.jacoco.agent\\0.7.1.201405082137\\org.jacoco.agent-0.7.1.201405082137-runtime.jar=destfile=C:\\projetos\\arch\\archetype\\target\\jacoco.exec
      [INFO]
      [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ archetype ---
      [INFO] Using 'UTF-8' encoding to copy filtered resources.
      [INFO] Copying 4 resources
      [INFO]
      [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ archetype ---
      [INFO] Changes detected - recompiling the module!
      [INFO] Compiling 33 source files to C:\projetos\arch\archetype\target\classes
      [WARNING] /C:/projetos/arch/archetype/src/main/java/org/conventions/archetype/bean/GroupModalMBean.java: Some input files use unchecked or unsafe operations.
      [WARNING] /C:/projetos/arch/archetype/src/main/java/org/conventions/archetype/bean/GroupModalMBean.java: Recompile with -Xlint:unchecked for details.
      [INFO]
      [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ archetype ---
      [INFO] Using 'UTF-8' encoding to copy filtered resources.
      [INFO] Copying 6 resources
      [INFO] Copying 5 resources
      [INFO]
      [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ archetype ---
      [INFO] Changes detected - recompiling the module!
      [INFO] Compiling 41 source files to C:\projetos\arch\archetype\target\test-classes
      [INFO]
      [INFO] --- maven-dependency-plugin:2.8:unpack (unpack) @ archetype ---
      [INFO] Configured Artifact: org.wildfly:wildfly-dist:8.0.0.Final:zip
      [INFO] Unpacking C:\Users\rafael-pestano\.m2\repository\org\wildfly\wildfly-dist\8.0.0.Final\wildfly-dist-8.0.0.Final.zip to C:\projetos\arch\archetype\target with includes "" and excludes ""
      [INFO]
      [INFO] --- maven-surefire-plugin:2.16:test (default-test) @ archetype ---
      [INFO] Surefire report directory: C:\projetos\arch\archetype\target\surefire-reports
      
      -------------------------------------------------------
      T E S T S
      -------------------------------------------------------
      Running org.conventions.archetype.test.it.HelloArquillianIt
      (E) ManagerProcessing
              (O) LoadableExtensionLoader.load
              (E) ServiceLoader
      (E) ManagerStarted
              (O) ConfigurationRegistrar.loadConfiguration
              (E) ArquillianDescriptor
                      (O) DBUnitConfigurationClientSideProducer.observe
      SLF4J: Class path contains multiple SLF4J bindings.
      SLF4J: Found binding in [jar:file:/C:/Users/rafael-pestano/.m2/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
      SLF4J: Found binding in [jar:file:/C:/Users/rafael-pestano/.m2/repository/org/glassfish/main/extras/glassfish-embedded-all/3.1.2/glassfish-embedded-all-3.1.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
      SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
      SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
                      (E) DBUnitConfiguration
                      (O) ContainerRegistryCreator.createRegistry
                      (E) ContainerRegistry
                      (O) JacocoConfigurator.configure
                      (E) JacocoConfiguration
                      (O) TransactionConfigurationProducer.loadConfiguration
                      (E) TransactionConfiguration
                      (O) PersistenceConfigurationClientSideProducer.observe
                      (E) PersistenceConfiguration
                      (O) ProtocolRegistryCreator.createRegistry
                      (E) ProtocolRegistry
                      (O) ScriptingConfigurationClientSideProducer.observe
                      (E) ScriptingConfiguration
              (O) ProxyUsageTracker.initializeContextMapping
              (E) ProxyURLToContextMapping
              (O) DroneLifecycleManager.managerStarted
              (E) DroneContext
              (O) OperationalContextInitializer.initializeOperationalContexts
              (E) OperationalContexts
      (E) BeforeSuite
              (I) TestContextHandler.createSuiteContext
              (O) ProxyObserver.initializeProxies
              (E) ProxyHolder
              (O) ContainerEventController.execute
              (E) ContainerMultiControlEvent
                      (O) ContainerLifecycleController.setupContainers
                      (E) SetupContainer
                              (I) ContainerDeploymentContextHandler.createContainerContext
                              (O) ContainerLifecycleController.setupContainer
                              (E) BeforeSetup
                                      (O) ServerKillerExtension.beforeSuite
                              (E) Container
                              (E) AfterSetup
                      (O) ClientDeployerCreator.createClientSideDeployer
                      (E) Deployer
                      (O) ClientContainerControllerCreator.createClientSideContainerController
                      (E) ContainerController
              (E) ContainerMultiControlEvent
                      (O) ContainerLifecycleController.startSuiteContainers
                      (E) StartContainer
                              (I) ContainerDeploymentContextHandler.createContainerContext
                              (O) ContainerLifecycleController.startContainer
                              (E) BeforeStart
                              (E) ManagementClient
                              (E) ArchiveDeployer
                              (E) InitialContext
      Mai 30, 2014 1:04:32 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
      Informaþ§es: Starting container with: ["C:\Program Files\Java\jdk1.7.0_51\bin\java", -Xmx512m, -XX:MaxPermSize=256m, -Djboss.bind.address=localhost, -Darquillian.debug=true, -ea, -Djboss.home.dir=C:\projetos\arch\archetype\target/wildfly-8.0.0.Final, -Dorg.jbos
      s.boot.log.file=C:\projetos\arch\archetype\target\wildfly-8.0.0.Final\standalone\log\server.log, -Dlogging.configuration=file:/C:/projetos/arch/archetype/target/wildfly-8.0.0.Final/standalone/configuration/logging.properties, -Djboss.bundles.dir=C:\projetos\arc
      h\archetype\target/wildfly-8.0.0.Final\bundles, -jar, C:\projetos\arch\archetype\target\wildfly-8.0.0.Final\jboss-modules.jar, -mp, C:\projetos\arch\archetype\target/wildfly-8.0.0.Final\modules, org.jboss.as.standalone, -server-config, standalone.xml]
      13:04:33,143 INFO  [org.jboss.modules] (main) JBoss Modules version 1.3.0.Final
      13:04:33,474 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.0.Final
      13:04:33,536 INFO  [org.jboss.as] (MSC service thread 1-6) JBAS015899: WildFly 8.0.0.Final "WildFly" starting
      13:04:34,384 INFO  [org.jboss.as.server] (Controller Boot Thread) JBAS015888: Creating http management service using socket-binding (management-http)
      13:04:34,398 INFO  [org.xnio] (MSC service thread 1-2) XNIO version 3.2.0.Final
      13:04:34,405 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.2.0.Final
      13:04:34,428 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 33) JBAS010280: Activating Infinispan subsystem.
      13:04:34,440 INFO  [org.jboss.as.connector.logging] (MSC service thread 1-3) JBAS010408: Starting JCA Subsystem (IronJacamar 1.1.3.Final)
      13:04:34,454 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 28) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
      13:04:34,460 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 46) JBAS013171: Activating Security Subsystem
      13:04:34,463 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 41) JBAS011800: Activating Naming Subsystem
      13:04:34,465 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-6) JBAS010417: Started Driver service with driver-name = h2
      13:04:34,490 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 39) JBAS012615: Activated the following JSF Implementations: [main]
      13:04:34,496 INFO  [org.jboss.as.security] (MSC service thread 1-1) JBAS013170: Current PicketBox version=4.0.20.Final
      13:04:34,497 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 49) JBAS017502: Undertow 1.0.0.Final starting
      13:04:34,497 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) JBAS017502: Undertow 1.0.0.Final starting
      13:04:34,514 INFO  [org.jboss.remoting] (MSC service thread 1-5) JBoss Remoting version 4.0.0.Final
      13:04:34,544 INFO  [org.jboss.as.naming] (MSC service thread 1-6) JBAS011802: Starting Naming Service
      13:04:34,571 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-6) JBAS015400: Bound mail session [java:jboss/mail/Default]
      13:04:34,602 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 50) JBAS015537: Activating WebServices Extension
      13:04:34,650 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 49) JBAS017527: Creating file handler for path C:\projetos\arch\archetype\target\wildfly-8.0.0.Final/welcome-content
      13:04:34,658 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) JBAS017525: Started server default-server.
      13:04:34,742 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) JBAS017531: Host default-host starting
      13:04:34,769 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) JBAS017519: Undertow HTTP listener default listening on localhost/127.0.0.1:8080
      13:04:34,890 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-1) JBAS015012: Started FileSystemDeploymentService for directory C:\projetos\arch\archetype\target\wildfly-8.0.0.Final\standalone\deployments
      13:04:34,914 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
      13:04:35,001 INFO  [org.jboss.ws.common.management] (MSC service thread 1-7) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.2.3.Final
      13:04:36,190 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015961: Http management interface listening on http://127.0.0.1:9990/management
      13:04:36,190 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990
      13:04:36,191 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015874: WildFly 8.0.0.Final "WildFly" started in 3333ms - Started 183 of 232 services (80 services are lazy, passive or on-demand)
                              (E) AfterStart
              (O) DroneRegistrar.register
              (E) DroneRegistry
              (O) ReusableRemoteWebDriverExtension.initialize
              (E) ReusedSessionPermanentStorage
      Mai 30, 2014 1:04:39 PM org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusedSessionPermanentFileStorage readStore
      Informaþ§es: Reused session store is not available at C:\Users\rafael-pestano\.drone-webdriver-session-store, a new one will be created.
              (E) ReusedSessionStore
              (E) InitializationParametersMap
              (O) DroneLifecycleManager.configureDroneExtension
              (E) BeforeDroneExtensionConfigured
              (E) AfterDroneExtensionConfigured
              (O) BrowserCapabilitiesRegistrar.register
              (E) BrowserCapabilitiesRegistry
              (O) GrapheneRuntimeInitializer.injectGrapheneRuntime
              (O) ViewResourcesUnpacker.extractResources
      (E) BeforeClass
              (I) TestContextHandler.createSuiteContext
              (I) TestContextHandler.createClassContext
              (E) TestClass
              (O) GrapheneConfigurator.configureGraphene
              (E) DroneConfiguration
              (E) GrapheneConfigured
              (O) ContainerEventController.execute
              (E) ContainerMultiControlEvent
                      (O) ContainerLifecycleController.startClassContainers
              (E) Event
                      (O) DeploymentGenerator.generateDeployment
                      (E) DeploymentScenario
                              (O) DeploymentValidator.verifyWarpDeployment
              (E) ContainerMultiControlEvent
                      (O) ContainerDeployController.deployManaged
                      (E) DeployDeployment
                              (I) DeploymentExceptionHandler.verifyExpectedExceptionDuringDeploy
                              (I) ContainerDeploymentContextHandler.createDeploymentContext
                              (I) ContainerDeploymentContextHandler.createContainerContext
                              (O) ContainerDeployController.deploy
                              (E) DeploymentDescription
                              (E) Deployment
                              (E) BeforeDeploy
                                      (O) ServerSetupObserver.handleBeforeDeployment
                                      (O) ArchiveDeploymentToolingExporter.export
                                      (O) ArchiveDeploymentExporter.callback
                                      (O) ArquillianServiceDeployer.doServiceDeploy
                              (E) DeploymentException
                              (E) DeploymentException
                      (E) DeploymentException
                      (E) DeploymentException
              (E) DeploymentException
              (E) DeploymentException
      (E) AfterClass
              (I) TestContextHandler.createSuiteContext
              (I) TestContextHandler.createClassContext
              (E) TestClass
              (O) ClientBeforeAfterLifecycleEventExecuter.on
              (O) ContainerEventController.execute
              (E) ContainerMultiControlEvent
                      (O) ContainerDeployController.undeployManaged
                      (E) UnDeployDeployment
                              (I) ContainerDeploymentContextHandler.createDeploymentContext
                              (I) ContainerDeploymentContextHandler.createContainerContext
                              (O) ContainerDeployController.undeploy
                              (E) BeforeUnDeploy
                                      (O) DroneLifecycleManager.beforeUndeploy
      
      

       

      using drone 1.3.0 the tests hangs on:

       

      (E) AfterClass
              (I) TestContextHandler.createSuiteContext
              (I) TestContextHandler.createClassContext
              (E) TestClass
              (O) ClientBeforeAfterLifecycleEventExecuter.on
              (O) ContainerEventController.execute
              (E) ContainerMultiControlEvent
                      (O) ContainerDeployController.undeployManaged
                      (E) UnDeployDeployment
                              (I) ContainerDeploymentContextHandler.createDeploymentContext
                              (I) ContainerDeploymentContextHandler.createContainerContext
                              (O) ContainerDeployController.undeploy
                              (E) BeforeUnDeploy        
      
      

       

      i've also tried with JbossAS remote and managed but the problems persists

       

      here is my dependency tree>

       

      [INFO] Scanning for projects...
      [INFO]
      [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
      [INFO]                                                                        
      [INFO] ------------------------------------------------------------------------
      [INFO] Building conventions-archetype 1.0-SNAPSHOT
      [INFO] ------------------------------------------------------------------------
      [INFO]
      [INFO] --- maven-dependency-plugin:2.8:tree (default-cli) @ archetype ---
      [INFO] org.conventions.archetype:archetype:war:1.0-SNAPSHOT
      [INFO] +- org.conventionsframework:conventions-core:jar:1.1.1:compile
      [INFO] |  \- org.apache.commons:commons-lang3:jar:3.1:compile
      [INFO] +- org.primefaces:primefaces:jar:4.0:compile
      [INFO] +- org.primefaces.themes:all-themes:jar:1.0.10:runtime
      [INFO] +- org.apache.myfaces.extensions.cdi.bundles:myfaces-extcdi-bundle-jsf20:jar:1.0.6:compile
      [INFO] +- org.hibernate:hibernate-core:jar:4.3.4.Final:provided
      [INFO] |  +- org.jboss.logging:jboss-logging:jar:3.1.3.GA:provided
      [INFO] |  +- org.jboss.logging:jboss-logging-annotations:jar:1.2.0.Beta1:provided
      [INFO] |  +- org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:jar:1.0.0.Final:provided
      [INFO] |  +- dom4j:dom4j:jar:1.6.1:provided
      [INFO] |  +- org.hibernate.common:hibernate-commons-annotations:jar:4.0.4.Final:provided
      [INFO] |  +- org.hibernate.javax.persistence:hibernate-jpa-2.1-api:jar:1.0.0.Final:provided
      [INFO] |  +- org.javassist:javassist:jar:3.14.0-GA:provided
      [INFO] |  +- antlr:antlr:jar:2.7.7:provided
      [INFO] |  \- org.jboss:jandex:jar:1.1.0.Final:provided
      [INFO] +- org.jboss.resteasy:resteasy-jaxrs:jar:2.3.3.Final:provided
      [INFO] |  +- org.jboss.resteasy:jaxrs-api:jar:2.3.3.Final:provided
      [INFO] |  +- org.scannotation:scannotation:jar:1.0.3:provided
      [INFO] |  |  \- javassist:javassist:jar:3.12.1.GA:provided
      [INFO] |  +- javax.annotation:jsr250-api:jar:1.0:provided
      [INFO] |  +- javax.activation:activation:jar:1.1:provided
      [INFO] |  +- commons-httpclient:commons-httpclient:jar:3.1:provided
      [INFO] |  |  +- commons-logging:commons-logging:jar:1.1.1:provided
      [INFO] |  |  \- commons-codec:commons-codec:jar:1.2:provided
      [INFO] |  +- org.apache.httpcomponents:httpclient:jar:4.1.2:provided
      [INFO] |  \- net.jcip:jcip-annotations:jar:1.0:provided
      [INFO] +- org.jboss.resteasy:resteasy-jackson-provider:jar:2.3.5.Final:provided
      [INFO] |  +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.9:provided
      [INFO] |  +- org.codehaus.jackson:jackson-jaxrs:jar:1.9.9:provided
      [INFO] |  \- org.codehaus.jackson:jackson-xc:jar:1.9.9:provided
      [INFO] +- org.jboss.resteasy:resteasy-multipart-provider:jar:2.3.3.Final:provided
      [INFO] |  +- javax.mail:mail:jar:1.4.4:provided
      [INFO] |  +- org.apache.james:apache-mime4j:jar:0.6:provided
      [INFO] |  \- javax.servlet:servlet-api:jar:2.5:provided
      [INFO] +- org.codehaus.jackson:jackson-core-asl:jar:1.5.5:provided
      [INFO] +- org.jboss.resteasy:resteasy-jaxb-provider:jar:2.3.3.Final:provided
      [INFO] |  \- com.sun.xml.bind:jaxb-impl:jar:2.2.4:provided
      [INFO] |     \- javax.xml.bind:jaxb-api:jar:2.2.3:provided
      [INFO] |        \- javax.xml.stream:stax-api:jar:1.0-2:provided
      [INFO] +- com.google.code.gson:gson:jar:2.2.4:compile
      [INFO] +- junit:junit:jar:4.8.2:test
      [INFO] +- org.powermock:powermock-module-junit4:jar:1.5:test
      [INFO] |  \- org.powermock:powermock-module-junit4-common:jar:1.5:test
      [INFO] |     +- org.powermock:powermock-core:jar:1.5:test
      [INFO] |     \- org.powermock:powermock-reflect:jar:1.5:test
      [INFO] |        \- org.objenesis:objenesis:jar:1.2:test
      [INFO] +- org.powermock:powermock-api-mockito:jar:1.5:test
      [INFO] |  +- org.mockito:mockito-all:jar:1.9.5:test
      [INFO] |  \- org.powermock:powermock-api-support:jar:1.5:test
      [INFO] +- org.jboss.arquillian.junit:arquillian-junit-container:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.junit:arquillian-junit-core:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.test:arquillian-test-api:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.test:arquillian-test-spi:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.container:arquillian-container-test-api:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.container:arquillian-container-test-spi:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.core:arquillian-core-impl-base:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.test:arquillian-test-impl-base:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.container:arquillian-container-impl-base:jar:1.1.4.Final:test
      [INFO] |  |  \- org.jboss.arquillian.config:arquillian-config-impl-base:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.container:arquillian-container-test-impl-base:jar:1.1.4.Final:test
      [INFO] |  \- org.jboss.shrinkwrap:shrinkwrap-impl-base:jar:1.2.2:test
      [INFO] |     \- org.jboss.shrinkwrap:shrinkwrap-spi:jar:1.2.2:test
      [INFO] +- org.jboss.arquillian.extension:arquillian-persistence-api:jar:1.0.0.Alpha7:test
      [INFO] +- org.jboss.arquillian.extension:arquillian-persistence-dbunit:jar:1.0.0.Alpha7:test
      [INFO] |  +- org.jboss.arquillian.extension:arquillian-persistence-spi:jar:1.0.0.Alpha7:test
      [INFO] |  +- org.jboss.arquillian.extension:arquillian-persistence-core:jar:1.0.0.Alpha7:test
      [INFO] |  |  \- org.jboss.arquillian.extension:arquillian-transaction-jta:jar:1.0.1.Final:test
      [INFO] |  |     \- org.jboss.arquillian.extension:arquillian-transaction-impl-base:jar:1.0.1.Final:test
      [INFO] |  +- org.jboss.arquillian.extension:arquillian-transaction-spi:jar:1.0.1.Final:test
      [INFO] |  |  \- org.jboss.arquillian.extension:arquillian-transaction-api:jar:1.0.1.Final:test
      [INFO] |  +- org.dbunit:dbunit:jar:2.5.0:test
      [INFO] |  +- org.slf4j:slf4j-api:jar:1.7.2:test
      [INFO] |  +- org.yaml:snakeyaml:jar:1.10:test
      [INFO] |  +- org.apache.poi:poi:jar:3.2-FINAL:test
      [INFO] |  +- org.jboss.arquillian.core:arquillian-core-spi:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.container:arquillian-container-spi:jar:1.1.4.Final:test
      [INFO] |  +- org.jboss.arquillian.config:arquillian-config-api:jar:1.1.4.Final:test
      [INFO] |  \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-api-base:jar:2.0.0-alpha-5:test
      [INFO] +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-depchain:pom:2.1.0:test
      [INFO] |  +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api:jar:2.1.0:test
      [INFO] |  +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi:jar:2.1.0:test
      [INFO] |  +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven:jar:2.1.0:test
      [INFO] |  +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven:jar:2.1.0:test
      [INFO] |  +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-api-maven-archive:jar:2.1.0:test
      [INFO] |  +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven:jar:2.1.0:test
      [INFO] |  |  +- org.eclipse.aether:aether-api:jar:0.9.0.M2:test
      [INFO] |  |  +- org.eclipse.aether:aether-impl:jar:0.9.0.M2:test
      [INFO] |  |  +- org.eclipse.aether:aether-spi:jar:0.9.0.M2:test
      [INFO] |  |  +- org.eclipse.aether:aether-util:jar:0.9.0.M2:test
      [INFO] |  |  +- org.eclipse.aether:aether-connector-wagon:jar:0.9.0.M2:test
      [INFO] |  |  +- org.apache.maven:maven-aether-provider:jar:3.1.1:test
      [INFO] |  |  +- org.apache.maven:maven-model:jar:3.1.1:test
      [INFO] |  |  +- org.apache.maven:maven-model-builder:jar:3.1.1:test
      [INFO] |  |  |  \- org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:test
      [INFO] |  |  +- org.apache.maven:maven-repository-metadata:jar:3.1.1:test
      [INFO] |  |  +- org.apache.maven:maven-settings:jar:3.1.1:test
      [INFO] |  |  +- org.apache.maven:maven-settings-builder:jar:3.1.1:test
      [INFO] |  |  +- org.codehaus.plexus:plexus-interpolation:jar:1.19:test
      [INFO] |  |  +- org.codehaus.plexus:plexus-utils:jar:3.0.15:test
      [INFO] |  |  +- org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:test
      [INFO] |  |  |  \- org.sonatype.plexus:plexus-cipher:jar:1.4:test
      [INFO] |  |  +- org.apache.maven.wagon:wagon-provider-api:jar:2.6:test
      [INFO] |  |  +- org.apache.maven.wagon:wagon-file:jar:2.6:test
      [INFO] |  |  \- org.apache.maven.wagon:wagon-http-lightweight:jar:2.6:test
      [INFO] |  |     \- org.apache.maven.wagon:wagon-http-shared:jar:2.6:test
      [INFO] |  |        \- org.jsoup:jsoup:jar:1.7.2:test
      [INFO] |  \- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven-archive:jar:2.1.0:test
      [INFO] |     +- org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-spi-maven-archive:jar:2.1.0:test
      [INFO] |     +- org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.0.0.M5:test
      [INFO] |     |  +- javax.enterprise:cdi-api:jar:1.0:provided
      [INFO] |     |  +- com.google.guava:guava:jar:10.0.1:test
      [INFO] |     |  |  \- com.google.code.findbugs:jsr305:jar:1.3.9:test
      [INFO] |     |  +- org.sonatype.sisu:sisu-guice:jar:no_aop:3.1.0:test
      [INFO] |     |  |  \- aopalliance:aopalliance:jar:1.0:test
      [INFO] |     |  \- org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.0.0.M5:test
      [INFO] |     \- org.codehaus.plexus:plexus-compiler-javac:jar:2.3:test
      [INFO] |        \- org.codehaus.plexus:plexus-compiler-api:jar:2.3:test
      [INFO] +- org.jboss.arquillian.graphene:graphene-webdriver:pom:2.0.2.Final:test
      [INFO] |  +- org.jboss.arquillian.graphene:graphene-webdriver-api:jar:2.0.2.Final:test
      [INFO] |  +- org.jboss.arquillian.graphene:graphene-webdriver-spi:jar:2.0.2.Final:test
      [INFO] |  +- org.jboss.arquillian.graphene:graphene-webdriver-impl:jar:2.0.2.Final:test
      [INFO] |  |  +- org.jboss.arquillian.extension:arquillian-drone-impl:jar:1.3.0.Final:test
      [INFO] |  |  \- org.jboss.arquillian.extension:arquillian-drone-configuration:jar:1.3.0.Final:test
      [INFO] |  +- org.jboss.arquillian.extension:arquillian-drone-webdriver-depchain:pom:1.3.0.Final:test
      [INFO] |  |  +- org.jboss.arquillian.extension:arquillian-drone-api:jar:1.3.0.Final:test
      [INFO] |  |  +- org.jboss.arquillian.extension:arquillian-drone-spi:jar:1.3.0.Final:test
      [INFO] |  |  +- org.jboss.arquillian.extension:arquillian-drone-webdriver:jar:1.3.0.Final:test
      [INFO] |  |  +- org.seleniumhq.selenium:selenium-api:jar:2.41.0:test
      [INFO] |  |  |  \- org.json:json:jar:20080701:test
      [INFO] |  |  +- org.seleniumhq.selenium:selenium-support:jar:2.41.0:test
      [INFO] |  |  +- org.seleniumhq.selenium:selenium-chrome-driver:jar:2.41.0:test
      [INFO] |  |  +- org.seleniumhq.selenium:selenium-firefox-driver:jar:2.41.0:test
      [INFO] |  |  |  \- org.apache.commons:commons-exec:jar:1.1:test
      [INFO] |  |  +- org.seleniumhq.selenium:selenium-htmlunit-driver:jar:2.41.0:test
      [INFO] |  |  |  \- net.sourceforge.htmlunit:htmlunit:jar:2.13:test
      [INFO] |  |  |     +- xalan:xalan:jar:2.7.1:test
      [INFO] |  |  |     |  \- xalan:serializer:jar:2.7.1:test
      [INFO] |  |  |     +- org.apache.httpcomponents:httpmime:jar:4.3.1:test
      [INFO] |  |  |     +- net.sourceforge.htmlunit:htmlunit-core-js:jar:2.13:test
      [INFO] |  |  |     +- xerces:xercesImpl:jar:2.11.0:test
      [INFO] |  |  |     +- net.sourceforge.nekohtml:nekohtml:jar:1.9.19:test
      [INFO] |  |  |     +- net.sourceforge.cssparser:cssparser:jar:0.9.11:test
      [INFO] |  |  |     |  \- org.w3c.css:sac:jar:1.3:test
      [INFO] |  |  |     \- org.eclipse.jetty:jetty-websocket:jar:8.1.12.v20130726:test
      [INFO] |  |  |        +- org.eclipse.jetty:jetty-util:jar:8.1.12.v20130726:test
      [INFO] |  |  |        +- org.eclipse.jetty:jetty-io:jar:8.1.12.v20130726:test
      [INFO] |  |  |        \- org.eclipse.jetty:jetty-http:jar:8.1.12.v20130726:test
      [INFO] |  |  +- org.seleniumhq.selenium:selenium-ie-driver:jar:2.41.0:test
      [INFO] |  |  |  +- net.java.dev.jna:jna:jar:3.4.0:test
      [INFO] |  |  |  \- net.java.dev.jna:platform:jar:3.4.0:test
      [INFO] |  |  +- org.seleniumhq.selenium:selenium-remote-driver:jar:2.41.0:test
      [INFO] |  |  |  \- cglib:cglib-nodep:jar:2.1_3:test
      [INFO] |  |  \- com.opera:operadriver:jar:1.5:test
      [INFO] |  |     +- com.opera:operalaunchers:jar:1.1:test
      [INFO] |  |     +- com.google.protobuf:protobuf-java:jar:2.4.1:test
      [INFO] |  |     +- commons-jxpath:commons-jxpath:jar:1.3:test
      [INFO] |  |     \- org.ini4j:ini4j:jar:0.5.2:test
      [INFO] |  \- org.seleniumhq.selenium:selenium-java:jar:2.41.0:test
      [INFO] |     +- org.seleniumhq.selenium:selenium-safari-driver:jar:2.41.0:test
      [INFO] |     \- org.webbitserver:webbit:jar:0.4.14:test
      [INFO] |        \- io.netty:netty:jar:3.5.2.Final:test
      [INFO] +- org.jboss.arquillian.extension:arquillian-phantom-driver:jar:1.1.2.Final:test
      [INFO] |  \- com.github.detro.ghostdriver:phantomjsdriver:jar:1.1.0:test
      [INFO] |     \- org.seleniumhq.selenium:selenium-server:jar:2.41.0:test
      [INFO] |        +- org.bouncycastle:bcprov-jdk15on:jar:1.48:test
      [INFO] |        +- org.bouncycastle:bcpkix-jdk15on:jar:1.48:test
      [INFO] |        +- mx4j:mx4j-tools:jar:3.0.1:test
      [INFO] |        +- org.mortbay.jetty:servlet-api-2.5:jar:6.1.9:test
      [INFO] |        \- org.seleniumhq.selenium:jetty-repacked:jar:7.6.1:test
      [INFO] +- org.jboss.arquillian.jbehave:arquillian-jbehave-core:jar:1.0.2:test
      [INFO] |  +- org.jbehave:jbehave-core:zip:resources:3.7:test
      [INFO] |  |  +- junit:junit-dep:jar:4.8.2:test
      [INFO] |  |  +- org.hamcrest:hamcrest-core:jar:1.1:test
      [INFO] |  |  +- org.hamcrest:hamcrest-library:jar:1.1:test
      [INFO] |  |  +- org.hamcrest:hamcrest-integration:jar:1.1:test
      [INFO] |  |  +- commons-io:commons-io:jar:1.4:test
      [INFO] |  |  +- commons-lang:commons-lang:jar:2.5:test
      [INFO] |  |  +- org.freemarker:freemarker:jar:2.3.16:test
      [INFO] |  |  +- com.thoughtworks.paranamer:paranamer:jar:2.4:test
      [INFO] |  |  \- com.thoughtworks.xstream:xstream:jar:1.3.1:test
      [INFO] |  |     \- xpp3:xpp3_min:jar:1.1.4c:test
      [INFO] |  +- org.jbehave:jbehave-core:jar:3.7:test
      [INFO] |  \- org.jbehave.site:jbehave-site-resources:zip:3.1.1:test
      [INFO] +- org.jboss.arquillian.extension:arquillian-warp:pom:1.0.0.Alpha7:test
      [INFO] |  +- org.jboss.arquillian.extension:arquillian-warp-api:jar:1.0.0.Alpha7:test
      [INFO] |  +- org.jboss.arquillian.extension:arquillian-warp-spi:jar:1.0.0.Alpha7:test
      [INFO] |  \- org.jboss.arquillian.extension:arquillian-warp-impl:jar:1.0.0.Alpha7:test
      [INFO] |     \- org.littleshoot:littleproxy:jar:1.0.0-beta5:test
      [INFO] |        +- commons-cli:commons-cli:jar:1.2:test
      [INFO] |        +- io.netty:netty-all:jar:4.0.14.Final:test
      [INFO] |        +- com.barchart.udt:barchart-udt-bundle:jar:2.3.0:test
      [INFO] |        \- org.littleshoot:dnssec4j:jar:0.1:test
      [INFO] |           \- org.littleshoot:dnsjava:jar:2.1.3:test
      [INFO] +- org.jboss.arquillian.extension:arquillian-warp-jsf:jar:1.0.0.Alpha7:compile
      [INFO] +- org.jboss.spec.javax.annotation:jboss-annotations-api_1.1_spec:jar:1.0.1.Final:test
      [INFO] +- org.jboss.spec.javax.ejb:jboss-ejb-api_3.1_spec:jar:1.0.2.Final:test
      [INFO] +- org.jboss.arquillian.protocol:arquillian-protocol-servlet:jar:1.1.4.Final:test
      [INFO] |  \- org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-spi:jar:2.0.0-alpha-5:test
      [INFO] |     \- org.easytesting:fest-assert:jar:1.4:test
      [INFO] |        \- org.easytesting:fest-util:jar:1.1.6:test
      [INFO] +- org.apache.httpcomponents:httpcore:jar:4.2.5:test
      [INFO] +- commons-collections:commons-collections:jar:3.2.1:compile
      [INFO] +- xml-apis:xml-apis:jar:1.4.01:test
      [INFO] +- org.slf4j:slf4j-log4j12:jar:1.7.5:test
      [INFO] |  \- log4j:log4j:jar:1.2.17:test
      [INFO] +- org.glassfish.main.extras:glassfish-embedded-all:jar:3.1.2:provided
      [INFO] +- org.wildfly:wildfly-arquillian-container-managed:jar:8.0.0.Final:test
      [INFO] |  +- org.wildfly:wildfly-arquillian-common:jar:8.0.0.Final:test
      [INFO] |  |  +- org.jboss.arquillian.testenricher:arquillian-testenricher-cdi:jar:1.1.4.Final:test
      [INFO] |  |  +- org.jboss.arquillian.testenricher:arquillian-testenricher-ejb:jar:1.1.4.Final:test
      [INFO] |  |  +- org.jboss.arquillian.testenricher:arquillian-testenricher-initialcontext:jar:1.1.4.Final:test
      [INFO] |  |  +- org.jboss.arquillian.testenricher:arquillian-testenricher-osgi:jar:2.1.0.CR2:test
      [INFO] |  |  +- org.jboss.arquillian.testenricher:arquillian-testenricher-resource:jar:1.1.4.Final:test
      [INFO] |  |  +- org.wildfly:wildfly-arquillian-testenricher-msc:jar:8.0.0.Final:test
      [INFO] |  |  |  +- org.wildfly:wildfly-server:jar:8.0.0.Final:test
      [INFO] |  |  |  |  +- org.wildfly:wildfly-controller:jar:8.0.0.Final:test
      [INFO] |  |  |  |  |  +- org.wildfly:wildfly-core-security:jar:8.0.0.Final:test
      [INFO] |  |  |  |  |  \- org.jboss:staxmapper:jar:1.1.0.Final:test
      [INFO] |  |  |  |  +- org.wildfly:wildfly-domain-http-interface:jar:8.0.0.Final:test
      [INFO] |  |  |  |  |  \- org.wildfly:wildfly-domain-management:jar:8.0.0.Final:test
      [INFO] |  |  |  |  +- org.wildfly:wildfly-deployment-repository:jar:8.0.0.Final:test
      [INFO] |  |  |  |  +- org.wildfly:wildfly-patching:jar:8.0.0.Final:test
      [INFO] |  |  |  |  |  \- org.wildfly:wildfly-cli:jar:8.0.0.Final:test
      [INFO] |  |  |  |  |     +- org.jboss.aesh:aesh:jar:0.33.11:test
      [INFO] |  |  |  |  |     |  \- org.fusesource.jansi:jansi:jar:1.9:test
      [INFO] |  |  |  |  |     +- org.picketbox:picketbox:jar:4.0.20.Final:test
      [INFO] |  |  |  |  |     \- sun.jdk:jconsole:jar:jdk:system
      [INFO] |  |  |  |  +- org.wildfly:wildfly-platform-mbean:jar:8.0.0.Final:test
      [INFO] |  |  |  |  +- org.wildfly:wildfly-process-controller:jar:8.0.0.Final:test
      [INFO] |  |  |  |  +- org.wildfly:wildfly-remoting:jar:8.0.0.Final:test
      [INFO] |  |  |  |  |  \- org.wildfly:wildfly-io:jar:8.0.0.Final:test
      [INFO] |  |  |  |  +- org.wildfly:wildfly-network:jar:8.0.0.Final:test
      [INFO] |  |  |  |  +- org.wildfly:wildfly-version:jar:8.0.0.Final:test
      [INFO] |  |  |  |  +- org.jboss.invocation:jboss-invocation:jar:1.2.1.Final:test
      [INFO] |  |  |  |  +- org.jboss.logmanager:jboss-logmanager:jar:1.5.2.Final:test
      [INFO] |  |  |  |  +- org.jboss.modules:jboss-modules:jar:1.3.0.Final:test
      [INFO] |  |  |  |  +- org.jboss.stdio:jboss-stdio:jar:1.0.2.GA:test
      [INFO] |  |  |  |  +- org.jboss:jboss-vfs:jar:3.2.2.Final:test
      [INFO] |  |  |  |  \- io.undertow:undertow-core:jar:1.0.0.Final:test
      [INFO] |  |  |  \- org.jboss.msc:jboss-msc:jar:1.2.0.Final:test
      [INFO] |  |  +- org.wildfly:wildfly-controller-client:jar:8.0.0.Final:test
      [INFO] |  |  |  +- org.wildfly:wildfly-protocol:jar:8.0.0.Final:test
      [INFO] |  |  |  +- org.jboss:jboss-dmr:jar:1.2.0.Final:test
      [INFO] |  |  |  \- org.jboss.threads:jboss-threads:jar:2.1.1.Final:test
      [INFO] |  |  +- org.wildfly:wildfly-jmx:jar:8.0.0.Final:test
      [INFO] |  |  |  +- org.jboss:jboss-common-core:jar:2.2.22.GA:test
      [INFO] |  |  |  \- org.wildfly:wildfly-naming:jar:8.0.0.Final:test
      [INFO] |  |  |     \- org.jboss:jboss-remote-naming:jar:2.0.0.Final:test
      [INFO] |  |  |        \- org.jboss:jboss-ejb-client:jar:2.0.0.Final:test
      [INFO] |  |  \- org.osgi:org.osgi.core:jar:5.0.0:test
      [INFO] |  +- org.wildfly:wildfly-arquillian-protocol-jmx:jar:8.0.0.Final:test
      [INFO] |  |  +- org.wildfly.security:wildfly-security-manager:jar:1.0.0.Final:test
      [INFO] |  |  +- org.jboss.arquillian.protocol:arquillian-protocol-jmx:jar:1.1.4.Final:test
      [INFO] |  |  \- org.jboss.osgi.metadata:jbosgi-metadata:jar:3.0.1.Final:test
      [INFO] |  +- org.jboss.xnio:xnio-api:jar:3.2.0.Final:test
      [INFO] |  +- org.jboss.xnio:xnio-nio:jar:3.2.0.Final:test
      [INFO] |  +- org.jboss.marshalling:jboss-marshalling:jar:1.4.3.Final:test
      [INFO] |  +- org.jboss.marshalling:jboss-marshalling-river:jar:1.4.3.Final:test
      [INFO] |  +- org.jboss.remoting:jboss-remoting:jar:4.0.0.Final:test
      [INFO] |  +- org.jboss.remotingjmx:remoting-jmx:jar:2.0.0.Final:test
      [INFO] |  +- org.jboss.sasl:jboss-sasl:jar:1.0.4.Final:test
      [INFO] |  +- javax.inject:javax.inject:jar:1:provided
      [INFO] |  +- org.jboss.arquillian.core:arquillian-core-api:jar:1.1.4.Final:test
      [INFO] |  \- org.wildfly:wildfly-build-config:jar:8.0.0.Final:test
      [INFO] +- org.jboss.arquillian.extension:arquillian-jacoco:jar:1.0.0.Alpha6:test
      [INFO] |  \- org.jboss.shrinkwrap:shrinkwrap-api:jar:1.2.2:test
      [INFO] \- org.jacoco:org.jacoco.core:jar:0.6.5.201403032054:test
      [INFO]    \- org.ow2.asm:asm-all:jar:4.1:test
      [INFO] ------------------------------------------------------------------------
      [INFO] BUILD SUCCESS
      [INFO] ------------------------------------------------------------------------
      [INFO] Total time: 3.997 s
      [INFO] Finished at: 2014-05-30T14:07:32-03:00
      [INFO] Final Memory: 28M/357M
      [INFO] ------------------------------------------------------------------------
      
      

       

      any ideas?

       

      thanks in advance

        • 1. Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
          aslak

          It seems to fail during Deploy. Do you have a deployment error somewhere?

          • 2. Re: Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
            kwintesencja

            Hi Aslak,

             

            i think not cause cause when i don use jacoco profile i get green bar:

             

            C:\projetos\archetype>mvn clean test -Pjboss-remote -Pit-tests
            [INFO] Scanning for projects...
            [INFO]
            [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
            [INFO]
            [INFO] ------------------------------------------------------------------------
            [INFO] Building conventions-archetype 1.0-SNAPSHOT
            [INFO] ------------------------------------------------------------------------
            [INFO]
            [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ archetype ---
            [INFO] Deleting C:\projetos\archetype\target
            [INFO]
            [INFO] --- maven-dependency-plugin:2.8:copy-dependencies (default-cli) @ archetype ---
            [INFO] Copying maven-aether-provider-3.1.1.jar to C:\projetos\archetype\target\dependency\maven-aether-provider-3.1.1.jar
            [INFO] Copying arquillian-container-test-impl-base-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-container-test-impl-base-1.1.4.Final.jar
            [INFO] Copying xnio-api-3.0.7.GA.jar to C:\projetos\archetype\target\dependency\xnio-api-3.0.7.GA.jar
            [INFO] Copying jbehave-core-3.7.jar to C:\projetos\archetype\target\dependency\jbehave-core-3.7.jar
            [INFO] Copying powermock-api-mockito-1.5.jar to C:\projetos\archetype\target\dependency\powermock-api-mockito-1.5.jar
            [INFO] Copying paranamer-2.4.jar to C:\projetos\archetype\target\dependency\paranamer-2.4.jar
            [INFO] Copying jboss-as-osgi-service-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-osgi-service-7.2.0.Final.jar
            [INFO] Copying shrinkwrap-resolver-spi-2.1.0.jar to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-spi-2.1.0.jar
            [INFO] Copying mx4j-tools-3.0.1.jar to C:\projetos\archetype\target\dependency\mx4j-tools-3.0.1.jar
            [INFO] Copying jcip-annotations-1.0.jar to C:\projetos\archetype\target\dependency\jcip-annotations-1.0.jar
            [INFO] Copying arquillian-persistence-core-1.0.0.Alpha7.jar to C:\projetos\archetype\target\dependency\arquillian-persistence-core-1.0.0.Alpha7.jar
            [INFO] Copying wagon-file-2.6.jar to C:\projetos\archetype\target\dependency\wagon-file-2.6.jar
            [INFO] Copying aether-connector-wagon-0.9.0.M2.jar to C:\projetos\archetype\target\dependency\aether-connector-wagon-0.9.0.M2.jar
            [INFO] Copying arquillian-warp-impl-1.0.0.Alpha7.jar to C:\projetos\archetype\target\dependency\arquillian-warp-impl-1.0.0.Alpha7.jar
            [INFO] Copying arquillian-config-impl-base-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-config-impl-base-1.1.4.Final.jar
            [INFO] Copying littleproxy-1.0.0-beta5.jar to C:\projetos\archetype\target\dependency\littleproxy-1.0.0-beta5.jar
            [INFO] Copying commons-codec-1.2.jar to C:\projetos\archetype\target\dependency\commons-codec-1.2.jar
            [INFO] Copying netty-3.5.2.Final.jar to C:\projetos\archetype\target\dependency\netty-3.5.2.Final.jar
            [INFO] Copying htmlunit-core-js-2.13.jar to C:\projetos\archetype\target\dependency\htmlunit-core-js-2.13.jar
            [INFO] Copying jboss-metadata-common-7.0.8.Final.jar to C:\projetos\archetype\target\dependency\jboss-metadata-common-7.0.8.Final.jar
            [INFO] Copying jetty-websocket-8.1.12.v20130726.jar to C:\projetos\archetype\target\dependency\jetty-websocket-8.1.12.v20130726.jar
            [INFO] Copying plexus-compiler-javac-2.3.jar to C:\projetos\archetype\target\dependency\plexus-compiler-javac-2.3.jar
            [INFO] Copying jboss-transaction-api_1.2_spec-1.0.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-transaction-api_1.2_spec-1.0.0.Final.jar
            [INFO] Copying selenium-server-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-server-2.41.0.jar
            [INFO] Copying jboss-as-deployment-repository-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-deployment-repository-7.2.0.Final.jar
            [INFO] Copying javassist-3.12.1.GA.jar to C:\projetos\archetype\target\dependency\javassist-3.12.1.GA.jar
            [INFO] Copying jboss-as-platform-mbean-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-platform-mbean-7.2.0.Final.jar
            [INFO] Copying aether-api-0.9.0.M2.jar to C:\projetos\archetype\target\dependency\aether-api-0.9.0.M2.jar
            [INFO] Copying arquillian-drone-api-2.0.0.Alpha1.jar to C:\projetos\archetype\target\dependency\arquillian-drone-api-2.0.0.Alpha1.jar
            [INFO] Copying commons-cli-1.2.jar to C:\projetos\archetype\target\dependency\commons-cli-1.2.jar
            [INFO] Copying jbosgi-vfs-1.2.0.Final.jar to C:\projetos\archetype\target\dependency\jbosgi-vfs-1.2.0.Final.jar
            [INFO] Copying jboss-as-arquillian-container-remote-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-arquillian-container-remote-7.2.0.Final.jar
            [INFO] Copying jackson-core-asl-1.5.5.jar to C:\projetos\archetype\target\dependency\jackson-core-asl-1.5.5.jar
            [INFO] Copying jboss-remoting-3.2.12.GA.jar to C:\projetos\archetype\target\dependency\jboss-remoting-3.2.12.GA.jar
            [INFO] Copying resteasy-multipart-provider-2.3.3.Final.jar to C:\projetos\archetype\target\dependency\resteasy-multipart-provider-2.3.3.Final.jar
            [INFO] Copying jboss-logging-3.1.3.GA.jar to C:\projetos\archetype\target\dependency\jboss-logging-3.1.3.GA.jar
            [INFO] Copying poi-3.2-FINAL.jar to C:\projetos\archetype\target\dependency\poi-3.2-FINAL.jar
            [INFO] Copying arquillian-testenricher-osgi-1.0.3.Final.jar to C:\projetos\archetype\target\dependency\arquillian-testenricher-osgi-1.0.3.Final.jar
            [INFO] Copying jbosgi-vfs30-1.2.0.Final.jar to C:\projetos\archetype\target\dependency\jbosgi-vfs30-1.2.0.Final.jar
            [INFO] Copying htmlunit-2.13.jar to C:\projetos\archetype\target\dependency\htmlunit-2.13.jar
            [INFO] Copying jboss-threads-2.1.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-threads-2.1.0.Final.jar
            [INFO] Copying jackson-jaxrs-1.9.9.jar to C:\projetos\archetype\target\dependency\jackson-jaxrs-1.9.9.jar
            [INFO] Copying jboss-as-remoting-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-remoting-7.2.0.Final.jar
            [INFO] Copying jboss-as-ee-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-ee-7.2.0.Final.jar
            [INFO] Copying remoting-jmx-1.1.0.Final.jar to C:\projetos\archetype\target\dependency\remoting-jmx-1.1.0.Final.jar
            [INFO] Copying selenium-chrome-driver-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-chrome-driver-2.41.0.jar
            [INFO] Copying maven-repository-metadata-3.1.1.jar to C:\projetos\archetype\target\dependency\maven-repository-metadata-3.1.1.jar
            [INFO] Copying dom4j-1.6.1.jar to C:\projetos\archetype\target\dependency\dom4j-1.6.1.jar
            [INFO] Copying dbunit-2.5.0.jar to C:\projetos\archetype\target\dependency\dbunit-2.5.0.jar
            [INFO] Copying dnssec4j-0.1.jar to C:\projetos\archetype\target\dependency\dnssec4j-0.1.jar
            [INFO] Copying powermock-reflect-1.5.jar to C:\projetos\archetype\target\dependency\powermock-reflect-1.5.jar
            [INFO] Copying selenium-java-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-java-2.41.0.jar
            [INFO] Copying selenium-support-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-support-2.41.0.jar
            [INFO] Copying jboss-modules-1.2.0.CR1.jar to C:\projetos\archetype\target\dependency\jboss-modules-1.2.0.CR1.jar
            [INFO] Copying jboss-transaction-api_1.1_spec-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\jboss-transaction-api_1.1_spec-1.0.1.Final.jar
            [INFO] Copying xpp3_min-1.1.4c.jar to C:\projetos\archetype\target\dependency\xpp3_min-1.1.4c.jar
            [INFO] Copying jaxrs-api-2.3.3.Final.jar to C:\projetos\archetype\target\dependency\jaxrs-api-2.3.3.Final.jar
            [INFO] Copying resteasy-jaxrs-2.3.3.Final.jar to C:\projetos\archetype\target\dependency\resteasy-jaxrs-2.3.3.Final.jar
            [INFO] Copying graphene-webdriver-impl-2.0.2.Final.jar to C:\projetos\archetype\target\dependency\graphene-webdriver-impl-2.0.2.Final.jar
            [INFO] Copying json-20080701.jar to C:\projetos\archetype\target\dependency\json-20080701.jar
            [INFO] Copying arquillian-drone-configuration-2.0.0.Alpha1.jar to C:\projetos\archetype\target\dependency\arquillian-drone-configuration-2.0.0.Alpha1.jar
            [INFO] Copying shrinkwrap-resolver-api-maven-archive-2.1.0.jar to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-api-maven-archive-2.1.0.jar
            [INFO] Copying jboss-as-domain-http-interface-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-domain-http-interface-7.2.0.Final.jar
            [INFO] Copying operadriver-1.5.jar to C:\projetos\archetype\target\dependency\operadriver-1.5.jar
            [INFO] Copying jbehave-site-resources-3.1.1.zip to C:\projetos\archetype\target\dependency\jbehave-site-resources-3.1.1.zip
            [INFO] Copying arquillian-persistence-api-1.0.0.Alpha7.jar to C:\projetos\archetype\target\dependency\arquillian-persistence-api-1.0.0.Alpha7.jar
            [INFO] Copying commons-logging-1.1.1.jar to C:\projetos\archetype\target\dependency\commons-logging-1.1.1.jar
            [INFO] Copying arquillian-transaction-impl-base-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\arquillian-transaction-impl-base-1.0.1.Final.jar
            [INFO] Copying shrinkwrap-api-1.2.2.jar to C:\projetos\archetype\target\dependency\shrinkwrap-api-1.2.2.jar
            [INFO] Copying aether-impl-0.9.0.M2.jar to C:\projetos\archetype\target\dependency\aether-impl-0.9.0.M2.jar
            [INFO] Copying freemarker-2.3.16.jar to C:\projetos\archetype\target\dependency\freemarker-2.3.16.jar
            [INFO] Copying classmate-1.0.0.jar to C:\projetos\archetype\target\dependency\classmate-1.0.0.jar
            [INFO] Copying jdeparser-1.0.0.Final.jar to C:\projetos\archetype\target\dependency\jdeparser-1.0.0.Final.jar
            [INFO] Copying jboss-as-controller-client-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-controller-client-7.2.0.Final.jar
            [INFO] Copying sisu-guice-3.1.0-no_aop.jar to C:\projetos\archetype\target\dependency\sisu-guice-3.1.0-no_aop.jar
            [INFO] Copying jbosgi-metadata-2.1.1.CR9.jar to C:\projetos\archetype\target\dependency\jbosgi-metadata-2.1.1.CR9.jar
            [INFO] Copying arquillian-test-impl-base-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-test-impl-base-1.1.4.Final.jar
            [INFO] Copying arquillian-drone-impl-2.0.0.Alpha1.jar to C:\projetos\archetype\target\dependency\arquillian-drone-impl-2.0.0.Alpha1.jar
            [INFO] Copying arquillian-drone-spi-2.0.0.Alpha1.jar to C:\projetos\archetype\target\dependency\arquillian-drone-spi-2.0.0.Alpha1.jar
            [INFO] Copying plexus-sec-dispatcher-1.3.jar to C:\projetos\archetype\target\dependency\plexus-sec-dispatcher-1.3.jar
            [INFO] Copying log4j-1.2.17.jar to C:\projetos\archetype\target\dependency\log4j-1.2.17.jar
            [INFO] Copying log4j-jboss-logmanager-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\log4j-jboss-logmanager-1.0.1.Final.jar
            [INFO] Copying jboss-as-version-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-version-7.2.0.Final.jar
            [INFO] Copying jbosgi-deployment-1.3.0.CR1.jar to C:\projetos\archetype\target\dependency\jbosgi-deployment-1.3.0.CR1.jar
            [INFO] Copying arquillian-config-api-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-config-api-1.1.4.Final.jar
            [INFO] Copying plexus-utils-3.0.15.jar to C:\projetos\archetype\target\dependency\plexus-utils-3.0.15.jar
            [INFO] Copying barchart-udt-bundle-2.3.0.jar to C:\projetos\archetype\target\dependency\barchart-udt-bundle-2.3.0.jar
            [INFO] Copying jboss-as-arquillian-protocol-jmx-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-arquillian-protocol-jmx-7.2.0.Final.jar
            [INFO] Copying activation-1.1.jar to C:\projetos\archetype\target\dependency\activation-1.1.jar
            [INFO] Copying arquillian-core-impl-base-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-core-impl-base-1.1.4.Final.jar
            [INFO] Copying jetty-util-8.1.12.v20130726.jar to C:\projetos\archetype\target\dependency\jetty-util-8.1.12.v20130726.jar
            [INFO] Copying xalan-2.7.1.jar to C:\projetos\archetype\target\dependency\xalan-2.7.1.jar
            [INFO] Copying mockito-all-1.9.5.jar to C:\projetos\archetype\target\dependency\mockito-all-1.9.5.jar
            [INFO] Copying jboss-common-core-2.2.17.GA.jar to C:\projetos\archetype\target\dependency\jboss-common-core-2.2.17.GA.jar
            [INFO] Copying powermock-core-1.5.jar to C:\projetos\archetype\target\dependency\powermock-core-1.5.jar
            [INFO] Copying aopalliance-1.0.jar to C:\projetos\archetype\target\dependency\aopalliance-1.0.jar
            [INFO] Copying hibernate-commons-annotations-4.0.4.Final.jar to C:\projetos\archetype\target\dependency\hibernate-commons-annotations-4.0.4.Final.jar
            [INFO] Copying jboss-msc-1.0.4.GA.jar to C:\projetos\archetype\target\dependency\jboss-msc-1.0.4.GA.jar
            [INFO] Copying arquillian-testenricher-initialcontext-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-testenricher-initialcontext-1.1.4.Final.jar
            [INFO] Copying maven-settings-3.1.1.jar to C:\projetos\archetype\target\dependency\maven-settings-3.1.1.jar
            [INFO] Copying commons-exec-1.1.jar to C:\projetos\archetype\target\dependency\commons-exec-1.1.jar
            [INFO] Copying arquillian-container-test-spi-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-container-test-spi-1.1.4.Final.jar
            [INFO] Copying maven-model-builder-3.1.1.jar to C:\projetos\archetype\target\dependency\maven-model-builder-3.1.1.jar
            [INFO] Copying jboss-as-arquillian-common-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-arquillian-common-7.2.0.Final.jar
            [INFO] Copying jsr305-1.3.9.jar to C:\projetos\archetype\target\dependency\jsr305-1.3.9.jar
            [INFO] Copying phantomjsdriver-1.1.0.jar to C:\projetos\archetype\target\dependency\phantomjsdriver-1.1.0.jar
            [INFO] Copying serializer-2.7.1.jar to C:\projetos\archetype\target\dependency\serializer-2.7.1.jar
            [INFO] Copying jboss-ejb-client-1.0.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-ejb-client-1.0.0.Final.jar
            [INFO] Copying jboss-as-arquillian-testenricher-msc-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-arquillian-testenricher-msc-7.2.0.Final.jar
            [INFO] Copying httpcore-4.2.5.jar to C:\projetos\archetype\target\dependency\httpcore-4.2.5.jar
            [INFO] Copying mail-1.4.4.jar to C:\projetos\archetype\target\dependency\mail-1.4.4.jar
            [INFO] Copying apache-mime4j-0.6.jar to C:\projetos\archetype\target\dependency\apache-mime4j-0.6.jar
            [INFO] Copying junit-dep-4.8.2.jar to C:\projetos\archetype\target\dependency\junit-dep-4.8.2.jar
            [INFO] Copying graphene-webdriver-spi-2.0.2.Final.jar to C:\projetos\archetype\target\dependency\graphene-webdriver-spi-2.0.2.Final.jar
            [INFO] Copying shrinkwrap-resolver-impl-maven-2.1.0.jar to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-impl-maven-2.1.0.jar
            [INFO] Copying maven-settings-builder-3.1.1.jar to C:\projetos\archetype\target\dependency\maven-settings-builder-3.1.1.jar
            [INFO] Copying jboss-logging-processor-1.1.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-logging-processor-1.1.0.Final.jar
            [INFO] Copying jboss-as-jmx-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-jmx-7.2.0.Final.jar
            [INFO] Copying arquillian-junit-container-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-junit-container-1.1.4.Final.jar
            [INFO] Copying primefaces-4.0.jar to C:\projetos\archetype\target\dependency\primefaces-4.0.jar
            [INFO] Copying jaxb-impl-2.2.4.jar to C:\projetos\archetype\target\dependency\jaxb-impl-2.2.4.jar
            [INFO] Copying hibernate-jpa-2.1-api-1.0.0.Final.jar to C:\projetos\archetype\target\dependency\hibernate-jpa-2.1-api-1.0.0.Final.jar
            [INFO] Copying operalaunchers-1.1.jar to C:\projetos\archetype\target\dependency\operalaunchers-1.1.jar
            [INFO] Copying jbehave-core-3.7-resources.zip to C:\projetos\archetype\target\dependency\jbehave-core-3.7-resources.zip
            [INFO] Copying javax.inject-1.jar to C:\projetos\archetype\target\dependency\javax.inject-1.jar
            [INFO] Copying shrinkwrap-resolver-impl-maven-archive-2.1.0.jar to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-impl-maven-archive-2.1.0.jar
            [INFO] Copying plexus-component-annotations-1.5.5.jar to C:\projetos\archetype\target\dependency\plexus-component-annotations-1.5.5.jar
            [INFO] Copying arquillian-protocol-servlet-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-protocol-servlet-1.1.4.Final.jar
            [INFO] Copying httpmime-4.3.1.jar to C:\projetos\archetype\target\dependency\httpmime-4.3.1.jar
            [INFO] Copying jna-3.4.0.jar to C:\projetos\archetype\target\dependency\jna-3.4.0.jar
            [INFO] Copying arquillian-protocol-jmx-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-protocol-jmx-1.1.4.Final.jar
            [INFO] Copying scannotation-1.0.3.jar to C:\projetos\archetype\target\dependency\scannotation-1.0.3.jar
            [INFO] Copying gson-2.2.4.jar to C:\projetos\archetype\target\dependency\gson-2.2.4.jar
            [INFO] Copying jbosgi-repository-core-2.1.0.Final.jar to C:\projetos\archetype\target\dependency\jbosgi-repository-core-2.1.0.Final.jar
            [INFO] Copying jboss-annotations-api_1.1_spec-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\jboss-annotations-api_1.1_spec-1.0.1.Final.jar
            [INFO] Copying jetty-io-8.1.12.v20130726.jar to C:\projetos\archetype\target\dependency\jetty-io-8.1.12.v20130726.jar
            [INFO] Copying staxmapper-1.1.0.Final.jar to C:\projetos\archetype\target\dependency\staxmapper-1.1.0.Final.jar
            [INFO] Copying selenium-ie-driver-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-ie-driver-2.41.0.jar
            [INFO] Copying cssparser-0.9.11.jar to C:\projetos\archetype\target\dependency\cssparser-0.9.11.jar
            [INFO] Copying xml-apis-1.4.01.jar to C:\projetos\archetype\target\dependency\xml-apis-1.4.01.jar
            [INFO] Copying shrinkwrap-resolver-depchain-2.1.0.pom to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-depchain-2.1.0.pom
            [INFO] Copying org.eclipse.sisu.inject-0.0.0.M5.jar to C:\projetos\archetype\target\dependency\org.eclipse.sisu.inject-0.0.0.M5.jar
            [INFO] Copying arquillian-drone-webdriver-2.0.0.Alpha1.jar to C:\projetos\archetype\target\dependency\arquillian-drone-webdriver-2.0.0.Alpha1.jar
            [INFO] Copying servlet-api-2.5-6.1.9.jar to C:\projetos\archetype\target\dependency\servlet-api-2.5-6.1.9.jar
            [INFO] Copying hamcrest-core-1.1.jar to C:\projetos\archetype\target\dependency\hamcrest-core-1.1.jar
            [INFO] Copying jboss-as-network-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-network-7.2.0.Final.jar
            [INFO] Copying jaxb-api-2.2.3.jar to C:\projetos\archetype\target\dependency\jaxb-api-2.2.3.jar
            [INFO] Copying guava-10.0.1.jar to C:\projetos\archetype\target\dependency\guava-10.0.1.jar
            [INFO] Copying jboss-dmr-1.1.6.Final.jar to C:\projetos\archetype\target\dependency\jboss-dmr-1.1.6.Final.jar
            [INFO] Copying arquillian-transaction-spi-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\arquillian-transaction-spi-1.0.1.Final.jar
            [INFO] Copying powermock-module-junit4-common-1.5.jar to C:\projetos\archetype\target\dependency\powermock-module-junit4-common-1.5.jar
            [INFO] Copying selenium-safari-driver-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-safari-driver-2.41.0.jar
            [INFO] Copying jbosgi-resolver-api-3.0.1.Final.jar to C:\projetos\archetype\target\dependency\jbosgi-resolver-api-3.0.1.Final.jar
            [INFO] Copying shrinkwrap-resolver-api-maven-2.1.0.jar to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-api-maven-2.1.0.jar
            [INFO] Copying jboss-as-server-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-server-7.2.0.Final.jar
            [INFO] Copying arquillian-container-osgi-1.0.3.Final.jar to C:\projetos\archetype\target\dependency\arquillian-container-osgi-1.0.3.Final.jar
            [INFO] Copying plexus-cipher-1.4.jar to C:\projetos\archetype\target\dependency\plexus-cipher-1.4.jar
            [INFO] Copying jboss-sasl-1.0.3.Final.jar to C:\projetos\archetype\target\dependency\jboss-sasl-1.0.3.Final.jar
            [INFO] Copying jboss-as-protocol-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-protocol-7.2.0.Final.jar
            [INFO] Copying commons-jxpath-1.3.jar to C:\projetos\archetype\target\dependency\commons-jxpath-1.3.jar
            [INFO] Copying commons-httpclient-3.1.jar to C:\projetos\archetype\target\dependency\commons-httpclient-3.1.jar
            [INFO] Copying powermock-module-junit4-1.5.jar to C:\projetos\archetype\target\dependency\powermock-module-junit4-1.5.jar
            [INFO] Copying wagon-provider-api-2.6.jar to C:\projetos\archetype\target\dependency\wagon-provider-api-2.6.jar
            [INFO] Copying powermock-api-support-1.5.jar to C:\projetos\archetype\target\dependency\powermock-api-support-1.5.jar
            [INFO] Copying jackson-mapper-asl-1.9.9.jar to C:\projetos\archetype\target\dependency\jackson-mapper-asl-1.9.9.jar
            [INFO] Copying jboss-ejb-api_3.1_spec-1.0.2.Final.jar to C:\projetos\archetype\target\dependency\jboss-ejb-api_3.1_spec-1.0.2.Final.jar
            [INFO] Copying junit-4.8.2.jar to C:\projetos\archetype\target\dependency\junit-4.8.2.jar
            [INFO] Copying jboss-interceptors-api_1.1_spec-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\jboss-interceptors-api_1.1_spec-1.0.1.Final.jar
            [INFO] Copying bcprov-jdk15on-1.48.jar to C:\projetos\archetype\target\dependency\bcprov-jdk15on-1.48.jar
            [INFO] Copying jboss-vfs-3.1.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-vfs-3.1.0.Final.jar
            [INFO] Copying cdi-api-1.0.jar to C:\projetos\archetype\target\dependency\cdi-api-1.0.jar
            [INFO] Copying protobuf-java-2.4.1.jar to C:\projetos\archetype\target\dependency\protobuf-java-2.4.1.jar
            [INFO] Copying stax-api-1.0-2.jar to C:\projetos\archetype\target\dependency\stax-api-1.0-2.jar
            [INFO] Copying hamcrest-library-1.1.jar to C:\projetos\archetype\target\dependency\hamcrest-library-1.1.jar
            [INFO] Copying jbosgi-repository-api-2.1.0.Final.jar to C:\projetos\archetype\target\dependency\jbosgi-repository-api-2.1.0.Final.jar
            [INFO] Copying resteasy-jackson-provider-2.3.5.Final.jar to C:\projetos\archetype\target\dependency\resteasy-jackson-provider-2.3.5.Final.jar
            [INFO] Copying arquillian-warp-api-1.0.0.Alpha7.jar to C:\projetos\archetype\target\dependency\arquillian-warp-api-1.0.0.Alpha7.jar
            [INFO] Copying commons-io-1.4.jar to C:\projetos\archetype\target\dependency\commons-io-1.4.jar
            [INFO] Copying arquillian-testenricher-ejb-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-testenricher-ejb-1.1.4.Final.jar
            [INFO] Copying jsr250-api-1.0.jar to C:\projetos\archetype\target\dependency\jsr250-api-1.0.jar
            [INFO] Copying org.osgi.core-4.2.0.jar to C:\projetos\archetype\target\dependency\org.osgi.core-4.2.0.jar
            [INFO] Copying jboss-as-domain-management-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-domain-management-7.2.0.Final.jar
            [INFO] Copying jboss-as-build-config-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-build-config-7.2.0.Final.jar
            [INFO] Copying jboss-logging-annotations-1.2.0.Beta1.jar to C:\projetos\archetype\target\dependency\jboss-logging-annotations-1.2.0.Beta1.jar
            [INFO] Copying jandex-1.1.0.Final.jar to C:\projetos\archetype\target\dependency\jandex-1.1.0.Final.jar
            [INFO] Copying plexus-compiler-api-2.3.jar to C:\projetos\archetype\target\dependency\plexus-compiler-api-2.3.jar
            [INFO] Copying jbosgi-framework-core-2.1.0.CR12.jar to C:\projetos\archetype\target\dependency\jbosgi-framework-core-2.1.0.CR12.jar
            [INFO] Copying jboss-invocation-1.1.1.Final.jar to C:\projetos\archetype\target\dependency\jboss-invocation-1.1.1.Final.jar
            [INFO] Copying arquillian-transaction-jta-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\arquillian-transaction-jta-1.0.1.Final.jar
            [INFO] Copying servlet-api-2.5.jar to C:\projetos\archetype\target\dependency\servlet-api-2.5.jar
            [INFO] Copying graphene-webdriver-2.0.2.Final.pom to C:\projetos\archetype\target\dependency\graphene-webdriver-2.0.2.Final.pom
            [INFO] Copying arquillian-test-spi-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-test-spi-1.1.4.Final.jar
            [INFO] Copying aether-spi-0.9.0.M2.jar to C:\projetos\archetype\target\dependency\aether-spi-0.9.0.M2.jar
            [INFO] Copying arquillian-persistence-spi-1.0.0.Alpha7.jar to C:\projetos\archetype\target\dependency\arquillian-persistence-spi-1.0.0.Alpha7.jar
            [INFO] Copying fest-util-1.1.6.jar to C:\projetos\archetype\target\dependency\fest-util-1.1.6.jar
            [INFO] Copying selenium-api-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-api-2.41.0.jar
            [INFO] Copying jboss-metadata-ear-7.0.8.Final.jar to C:\projetos\archetype\target\dependency\jboss-metadata-ear-7.0.8.Final.jar
            [INFO] Copying jackson-xc-1.9.9.jar to C:\projetos\archetype\target\dependency\jackson-xc-1.9.9.jar
            [INFO] Copying arquillian-testenricher-cdi-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-testenricher-cdi-1.1.4.Final.jar
            [INFO] Copying javassist-3.14.0-GA.jar to C:\projetos\archetype\target\dependency\javassist-3.14.0-GA.jar
            [INFO] Copying arquillian-core-spi-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-core-spi-1.1.4.Final.jar
            [INFO] Copying jboss-marshalling-1.3.16.GA.jar to C:\projetos\archetype\target\dependency\jboss-marshalling-1.3.16.GA.jar
            [INFO] Copying arquillian-transaction-api-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\arquillian-transaction-api-1.0.1.Final.jar
            [INFO] Copying arquillian-container-impl-base-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-container-impl-base-1.1.4.Final.jar
            [INFO] Copying all-themes-1.0.10.jar to C:\projetos\archetype\target\dependency\all-themes-1.0.10.jar
            [INFO] Copying arquillian-testenricher-resource-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-testenricher-resource-1.1.4.Final.jar
            [INFO] Copying maven-model-3.1.1.jar to C:\projetos\archetype\target\dependency\maven-model-3.1.1.jar
            [INFO] Copying nekohtml-1.9.19.jar to C:\projetos\archetype\target\dependency\nekohtml-1.9.19.jar
            [INFO] Copying xercesImpl-2.11.0.jar to C:\projetos\archetype\target\dependency\xercesImpl-2.11.0.jar
            [INFO] Copying hibernate-validator-5.1.0.Final.jar to C:\projetos\archetype\target\dependency\hibernate-validator-5.1.0.Final.jar
            [INFO] Copying jetty-repacked-7.6.1.jar to C:\projetos\archetype\target\dependency\jetty-repacked-7.6.1.jar
            [INFO] Copying jboss-remote-naming-1.0.5.Final.jar to C:\projetos\archetype\target\dependency\jboss-remote-naming-1.0.5.Final.jar
            [INFO] Copying arquillian-jbehave-core-1.0.2.jar to C:\projetos\archetype\target\dependency\arquillian-jbehave-core-1.0.2.jar
            [INFO] Copying jboss-logmanager-1.4.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-logmanager-1.4.0.Final.jar
            [INFO] Copying httpclient-4.1.2.jar to C:\projetos\archetype\target\dependency\httpclient-4.1.2.jar
            [INFO] Copying shrinkwrap-descriptors-spi-2.0.0-alpha-5.jar to C:\projetos\archetype\target\dependency\shrinkwrap-descriptors-spi-2.0.0-alpha-5.jar
            [INFO] Copying hibernate-core-4.3.4.Final.jar to C:\projetos\archetype\target\dependency\hibernate-core-4.3.4.Final.jar
            [INFO] Copying arquillian-core-api-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-core-api-1.1.4.Final.jar
            [INFO] Copying httpserver-1.0.1.Final.jar to C:\projetos\archetype\target\dependency\httpserver-1.0.1.Final.jar
            [INFO] Copying shrinkwrap-descriptors-api-base-2.0.0-alpha-5.jar to C:\projetos\archetype\target\dependency\shrinkwrap-descriptors-api-base-2.0.0-alpha-5.jar
            [INFO] Copying dnsjava-2.1.3.jar to C:\projetos\archetype\target\dependency\dnsjava-2.1.3.jar
            [INFO] Copying conventions-core-1.1.1.jar to C:\projetos\archetype\target\dependency\conventions-core-1.1.1.jar
            [INFO] Copying arquillian-warp-jsf-1.0.0.Alpha7.jar to C:\projetos\archetype\target\dependency\arquillian-warp-jsf-1.0.0.Alpha7.jar
            [INFO] Copying selenium-firefox-driver-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-firefox-driver-2.41.0.jar
            [INFO] Copying objenesis-1.2.jar to C:\projetos\archetype\target\dependency\objenesis-1.2.jar
            [INFO] Copying wagon-http-shared-2.6.jar to C:\projetos\archetype\target\dependency\wagon-http-shared-2.6.jar
            [INFO] Copying arquillian-phantom-driver-1.1.2.Final.jar to C:\projetos\archetype\target\dependency\arquillian-phantom-driver-1.1.2.Final.jar
            [INFO] Copying slf4j-api-1.7.2.jar to C:\projetos\archetype\target\dependency\slf4j-api-1.7.2.jar
            [INFO] Copying org.eclipse.sisu.plexus-0.0.0.M5.jar to C:\projetos\archetype\target\dependency\org.eclipse.sisu.plexus-0.0.0.M5.jar
            [INFO] Copying sac-1.3.jar to C:\projetos\archetype\target\dependency\sac-1.3.jar
            [INFO] Copying commons-lang-2.5.jar to C:\projetos\archetype\target\dependency\commons-lang-2.5.jar
            [INFO] Copying jbosgi-spi-3.2.0.Final.jar to C:\projetos\archetype\target\dependency\jbosgi-spi-3.2.0.Final.jar
            [INFO] Copying jboss-as-controller-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-controller-7.2.0.Final.jar
            [INFO] Copying arquillian-persistence-dbunit-1.0.0.Alpha7.jar to C:\projetos\archetype\target\dependency\arquillian-persistence-dbunit-1.0.0.Alpha7.jar
            [INFO] Copying xnio-nio-3.0.7.GA.jar to C:\projetos\archetype\target\dependency\xnio-nio-3.0.7.GA.jar
            [INFO] Copying glassfish-embedded-all-3.1.2.jar to C:\projetos\archetype\target\dependency\glassfish-embedded-all-3.1.2.jar
            [INFO] Copying antlr-2.7.7.jar to C:\projetos\archetype\target\dependency\antlr-2.7.7.jar
            [INFO] Copying arquillian-container-spi-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-container-spi-1.1.4.Final.jar
            [INFO] Copying jbosgi-resolver-felix-3.0.1.Final.jar to C:\projetos\archetype\target\dependency\jbosgi-resolver-felix-3.0.1.Final.jar
            [INFO] Copying jboss-marshalling-river-1.3.16.GA.jar to C:\projetos\archetype\target\dependency\jboss-marshalling-river-1.3.16.GA.jar
            [INFO] Copying jboss-as-naming-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-naming-7.2.0.Final.jar
            [INFO] Copying arquillian-warp-1.0.0.Alpha7.pom to C:\projetos\archetype\target\dependency\arquillian-warp-1.0.0.Alpha7.pom
            [INFO] Copying arquillian-junit-core-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-junit-core-1.1.4.Final.jar
            [INFO] Copying plexus-interpolation-1.19.jar to C:\projetos\archetype\target\dependency\plexus-interpolation-1.19.jar
            [INFO] Copying selenium-htmlunit-driver-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-htmlunit-driver-2.41.0.jar
            [INFO] Copying xstream-1.3.1.jar to C:\projetos\archetype\target\dependency\xstream-1.3.1.jar
            [INFO] Copying shrinkwrap-impl-base-1.2.2.jar to C:\projetos\archetype\target\dependency\shrinkwrap-impl-base-1.2.2.jar
            [INFO] Copying arquillian-warp-spi-1.0.0.Alpha7.jar to C:\projetos\archetype\target\dependency\arquillian-warp-spi-1.0.0.Alpha7.jar
            [INFO] Copying tools.jar to C:\projetos\archetype\target\dependency\jdk-tools-jdk.jar
            [INFO] Copying wagon-http-lightweight-2.6.jar to C:\projetos\archetype\target\dependency\wagon-http-lightweight-2.6.jar
            [INFO] Copying commons-collections-3.2.1.jar to C:\projetos\archetype\target\dependency\commons-collections-3.2.1.jar
            [INFO] Copying aether-util-0.9.0.M2.jar to C:\projetos\archetype\target\dependency\aether-util-0.9.0.M2.jar
            [INFO] Copying shrinkwrap-resolver-spi-maven-archive-2.1.0.jar to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-spi-maven-archive-2.1.0.jar
            [INFO] Copying hamcrest-integration-1.1.jar to C:\projetos\archetype\target\dependency\hamcrest-integration-1.1.jar
            [INFO] Copying arquillian-drone-webdriver-depchain-2.0.0.Alpha1.pom to C:\projetos\archetype\target\dependency\arquillian-drone-webdriver-depchain-2.0.0.Alpha1.pom
            [INFO] Copying selenium-remote-driver-2.41.0.jar to C:\projetos\archetype\target\dependency\selenium-remote-driver-2.41.0.jar
            [INFO] Copying ini4j-0.5.2.jar to C:\projetos\archetype\target\dependency\ini4j-0.5.2.jar
            [INFO] Copying shrinkwrap-spi-1.2.2.jar to C:\projetos\archetype\target\dependency\shrinkwrap-spi-1.2.2.jar
            [INFO] Copying arquillian-test-api-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-test-api-1.1.4.Final.jar
            [INFO] Copying resteasy-jaxb-provider-2.3.3.Final.jar to C:\projetos\archetype\target\dependency\resteasy-jaxb-provider-2.3.3.Final.jar
            [INFO] Copying slf4j-log4j12-1.7.5.jar to C:\projetos\archetype\target\dependency\slf4j-log4j12-1.7.5.jar
            [INFO] Copying cglib-nodep-2.1_3.jar to C:\projetos\archetype\target\dependency\cglib-nodep-2.1_3.jar
            [INFO] Copying arquillian-container-test-api-1.1.4.Final.jar to C:\projetos\archetype\target\dependency\arquillian-container-test-api-1.1.4.Final.jar
            [INFO] Copying bcpkix-jdk15on-1.48.jar to C:\projetos\archetype\target\dependency\bcpkix-jdk15on-1.48.jar
            [INFO] Copying jsoup-1.7.2.jar to C:\projetos\archetype\target\dependency\jsoup-1.7.2.jar
            [INFO] Copying jboss-as-process-controller-7.2.0.Final.jar to C:\projetos\archetype\target\dependency\jboss-as-process-controller-7.2.0.Final.jar
            [INFO] Copying shrinkwrap-resolver-api-2.1.0.jar to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-api-2.1.0.jar
            [INFO] Copying jetty-http-8.1.12.v20130726.jar to C:\projetos\archetype\target\dependency\jetty-http-8.1.12.v20130726.jar
            [INFO] Copying shrinkwrap-resolver-spi-maven-2.1.0.jar to C:\projetos\archetype\target\dependency\shrinkwrap-resolver-spi-maven-2.1.0.jar
            [INFO] Copying commons-lang3-3.1.jar to C:\projetos\archetype\target\dependency\commons-lang3-3.1.jar
            [INFO] Copying fest-assert-1.4.jar to C:\projetos\archetype\target\dependency\fest-assert-1.4.jar
            [INFO] Copying myfaces-extcdi-bundle-jsf20-1.0.6.jar to C:\projetos\archetype\target\dependency\myfaces-extcdi-bundle-jsf20-1.0.6.jar
            [INFO] Copying netty-all-4.0.14.Final.jar to C:\projetos\archetype\target\dependency\netty-all-4.0.14.Final.jar
            [INFO] Copying validation-api-1.0.0.GA.jar to C:\projetos\archetype\target\dependency\validation-api-1.0.0.GA.jar
            [INFO] Copying platform-3.4.0.jar to C:\projetos\archetype\target\dependency\platform-3.4.0.jar
            [INFO] Copying webbit-0.4.14.jar to C:\projetos\archetype\target\dependency\webbit-0.4.14.jar
            [INFO] Copying graphene-webdriver-api-2.0.2.Final.jar to C:\projetos\archetype\target\dependency\graphene-webdriver-api-2.0.2.Final.jar
            [INFO] Copying jboss-stdio-1.0.1.GA.jar to C:\projetos\archetype\target\dependency\jboss-stdio-1.0.1.GA.jar
            [INFO] Copying snakeyaml-1.10.jar to C:\projetos\archetype\target\dependency\snakeyaml-1.10.jar
            [INFO]
            [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ archetype ---
            [INFO] Using 'UTF-8' encoding to copy filtered resources.
            [INFO] Copying 4 resources
            [INFO]
            [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ archetype ---
            [INFO] Changes detected - recompiling the module!
            [INFO] Compiling 33 source files to C:\projetos\archetype\target\classes
            [WARNING] /C:/projetos/archetype/src/main/java/org/conventions/archetype/bean/UserMBean.java: Some input files use unchecked or unsafe operations.
            [WARNING] /C:/projetos/archetype/src/main/java/org/conventions/archetype/bean/UserMBean.java: Recompile with -Xlint:unchecked for details.
            [INFO]
            [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ archetype ---
            [INFO] Using 'UTF-8' encoding to copy filtered resources.
            [INFO] Copying 6 resources
            [INFO] Copying 5 resources
            [INFO]
            [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ archetype ---
            [INFO] Changes detected - recompiling the module!
            [INFO] Compiling 41 source files to C:\projetos\archetype\target\test-classes
            [INFO]
            [INFO] --- maven-surefire-plugin:2.16:test (default-test) @ archetype ---
            [INFO] Surefire report directory: C:\projetos\archetype\target\surefire-reports
            
            -------------------------------------------------------
            T E S T S
            -------------------------------------------------------
            Running org.conventions.archetype.test.rest.UserRestIt
            SLF4J: Class path contains multiple SLF4J bindings.
            SLF4J: Found binding in [jar:file:/C:/Users/rafael-pestano/.m2/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
            SLF4J: Found binding in [jar:file:/C:/Users/rafael-pestano/.m2/repository/org/glassfish/main/extras/glassfish-embedded-all/3.1.2/glassfish-embedded-all-3.1.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
            SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
            SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
            Mai 30, 2014 3:27:37 PM org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusedSessionPermanentFileStorage readStore
            Informaþ§es: Reused session store is not available at C:\Users\rafael-pestano\.drone-webdriver-session-store, a new one will be created.
            d11c109a-bf15-4c72-9b86-7cf9805c0946.war:
            /WEB-INF/
            /WEB-INF/lib/
            /WEB-INF/lib/httpcore-4.2.5.jar
            /WEB-INF/lib/jackson-core-asl-1.5.5.jar
            /WEB-INF/lib/primefaces-4.0.jar
            /WEB-INF/lib/all-themes-1.0.10.jar
            /WEB-INF/lib/gson-2.2.4.jar
            /WEB-INF/lib/commons-lang3-3.1.jar
            /WEB-INF/lib/conventions-core-1.1.1.jar
            /WEB-INF/lib/myfaces-extcdi-bundle-jsf20-1.0.6.jar
            /WEB-INF/faces-config.xml
            /WEB-INF/beans.xml
            /WEB-INF/web.xml
            /WEB-INF/jbossas-ds.xml
            /WEB-INF/classes/
            /WEB-INF/classes/messages_pt.properties
            /WEB-INF/classes/messages_en.properties
            /WEB-INF/classes/org/
            /WEB-INF/classes/org/conventions/
            /WEB-INF/classes/org/conventions/archetype/
            /WEB-INF/classes/org/conventions/archetype/event/
            /WEB-INF/classes/org/conventions/archetype/event/UpdateList.class
            /WEB-INF/classes/org/conventions/archetype/event/UpdateUserRoles.class
            /WEB-INF/classes/org/conventions/archetype/security/
            /WEB-INF/classes/org/conventions/archetype/security/SecurityInterceptor.class
            /WEB-INF/classes/org/conventions/archetype/security/SecurityContextImpl.class
            /WEB-INF/classes/org/conventions/archetype/model/
            /WEB-INF/classes/org/conventions/archetype/model/User.class
            /WEB-INF/classes/org/conventions/archetype/model/Role.class
            /WEB-INF/classes/org/conventions/archetype/model/States.class
            /WEB-INF/classes/org/conventions/archetype/model/Group.class
            /WEB-INF/classes/org/conventions/archetype/util/
            /WEB-INF/classes/org/conventions/archetype/util/Pages.class
            /WEB-INF/classes/org/conventions/archetype/util/AppConstants.class
            /WEB-INF/classes/org/conventions/archetype/util/AppConstants$Role.class
            /WEB-INF/classes/org/conventions/archetype/util/Utils.class
            /WEB-INF/classes/org/conventions/archetype/test/
            /WEB-INF/classes/org/conventions/archetype/test/rest/
            /WEB-INF/classes/org/conventions/archetype/test/rest/RestDataset.class
            /WEB-INF/classes/org/conventions/archetype/test/util/
            /WEB-INF/classes/org/conventions/archetype/test/util/TestService.class
            /WEB-INF/classes/org/conventions/archetype/rest/
            /WEB-INF/classes/org/conventions/archetype/rest/ApplicationRest.class
            /WEB-INF/classes/org/conventions/archetype/rest/UserRest.class
            /WEB-INF/classes/org/conventions/archetype/qualifier/
            /WEB-INF/classes/org/conventions/archetype/qualifier/ListToUpdate.class
            /WEB-INF/classes/org/conventions/archetype/qualifier/ListToUpdate$ListType.class
            /WEB-INF/classes/org/conventions/archetype/service/
            /WEB-INF/classes/org/conventions/archetype/service/GroupService.class
            /WEB-INF/classes/org/conventions/archetype/service/GroupServiceImpl.class
            /WEB-INF/classes/org/conventions/archetype/service/UserServiceImpl.class
            /WEB-INF/classes/org/conventions/archetype/service/RoleService.class
            /WEB-INF/classes/org/conventions/archetype/service/UserService.class
            /WEB-INF/classes/org/conventions/archetype/service/RoleServiceImpl.class
            /WEB-INF/classes/org/conventions/archetype/configuration/
            /WEB-INF/classes/org/conventions/archetype/configuration/AppConfigProvider.class
            /WEB-INF/classes/org/conventions/archetype/bean/
            /WEB-INF/classes/org/conventions/archetype/bean/ComboMBean.class
            /WEB-INF/classes/META-INF/
            /WEB-INF/classes/META-INF/persistence.xml
            Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.577 sec - in org.conventions.archetype.test.rest.UserRestIt
            Running org.conventions.archetype.test.it.HelloArquillianIt
            Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.424 sec - in org.conventions.archetype.test.it.HelloArquillianIt
            Running org.conventions.archetype.test.it.ArchetypeIt
            8a822b71-6b8b-41fd-9696-118abb320f9e.war:
            /WEB-INF/
            /WEB-INF/lib/
            /WEB-INF/lib/httpcore-4.2.5.jar
            /WEB-INF/lib/jackson-core-asl-1.5.5.jar
            /WEB-INF/lib/primefaces-4.0.jar
            /WEB-INF/lib/all-themes-1.0.10.jar
            /WEB-INF/lib/gson-2.2.4.jar
            /WEB-INF/lib/commons-lang3-3.1.jar
            /WEB-INF/lib/conventions-core-1.1.1.jar
            /WEB-INF/lib/myfaces-extcdi-bundle-jsf20-1.0.6.jar
            /WEB-INF/faces-config.xml
            /WEB-INF/beans.xml
            /WEB-INF/web.xml
            /WEB-INF/jbossas-ds.xml
            /WEB-INF/classes/
            /WEB-INF/classes/messages_pt.properties
            /WEB-INF/classes/messages_en.properties
            /WEB-INF/classes/org/
            /WEB-INF/classes/org/conventions/
            /WEB-INF/classes/org/conventions/archetype/
            /WEB-INF/classes/org/conventions/archetype/event/
            /WEB-INF/classes/org/conventions/archetype/event/UpdateList.class
            /WEB-INF/classes/org/conventions/archetype/event/UpdateUserRoles.class
            /WEB-INF/classes/org/conventions/archetype/security/
            /WEB-INF/classes/org/conventions/archetype/security/SecurityInterceptor.class
            /WEB-INF/classes/org/conventions/archetype/security/SecurityContextImpl.class
            /WEB-INF/classes/org/conventions/archetype/model/
            /WEB-INF/classes/org/conventions/archetype/model/User.class
            /WEB-INF/classes/org/conventions/archetype/model/Role.class
            /WEB-INF/classes/org/conventions/archetype/model/States.class
            /WEB-INF/classes/org/conventions/archetype/model/Group.class
            /WEB-INF/classes/org/conventions/archetype/util/
            /WEB-INF/classes/org/conventions/archetype/util/Pages.class
            /WEB-INF/classes/org/conventions/archetype/util/AppConstants.class
            /WEB-INF/classes/org/conventions/archetype/util/AppConstants$Role.class
            /WEB-INF/classes/org/conventions/archetype/util/Utils.class
            /WEB-INF/classes/org/conventions/archetype/test/
            /WEB-INF/classes/org/conventions/archetype/test/util/
            /WEB-INF/classes/org/conventions/archetype/test/util/TestService.class
            /WEB-INF/classes/org/conventions/archetype/test/it/
            /WEB-INF/classes/org/conventions/archetype/test/it/role/
            /WEB-INF/classes/org/conventions/archetype/test/it/role/RoleIt.class
            /WEB-INF/classes/org/conventions/archetype/test/it/user/
            /WEB-INF/classes/org/conventions/archetype/test/it/user/UserIt.class
            /WEB-INF/classes/org/conventions/archetype/test/it/BaseIt.class
            /WEB-INF/classes/org/conventions/archetype/test/it/ArchetypeIt.class
            /WEB-INF/classes/org/conventions/archetype/rest/
            /WEB-INF/classes/org/conventions/archetype/rest/ApplicationRest.class
            /WEB-INF/classes/org/conventions/archetype/rest/UserRest.class
            /WEB-INF/classes/org/conventions/archetype/qualifier/
            /WEB-INF/classes/org/conventions/archetype/qualifier/ListToUpdate.class
            /WEB-INF/classes/org/conventions/archetype/qualifier/ListToUpdate$ListType.class
            /WEB-INF/classes/org/conventions/archetype/service/
            /WEB-INF/classes/org/conventions/archetype/service/GroupService.class
            /WEB-INF/classes/org/conventions/archetype/service/GroupServiceImpl.class
            /WEB-INF/classes/org/conventions/archetype/service/UserServiceImpl.class
            /WEB-INF/classes/org/conventions/archetype/service/RoleService.class
            /WEB-INF/classes/org/conventions/archetype/service/UserService.class
            /WEB-INF/classes/org/conventions/archetype/service/RoleServiceImpl.class
            /WEB-INF/classes/org/conventions/archetype/configuration/
            /WEB-INF/classes/org/conventions/archetype/configuration/AppConfigProvider.class
            /WEB-INF/classes/org/conventions/archetype/bean/
            /WEB-INF/classes/org/conventions/archetype/bean/ComboMBean.class
            /WEB-INF/classes/META-INF/
            /WEB-INF/classes/META-INF/persistence.xml
            Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.802 sec - in org.conventions.archetype.test.it.ArchetypeIt
            
            Results :
            
            Tests run: 18, Failures: 0, Errors: 0, Skipped: 0
            
            [INFO] ------------------------------------------------------------------------
            [INFO] BUILD SUCCESS
            [INFO] ------------------------------------------------------------------------
            [INFO] Total time: 36.446 s
            [INFO] Finished at: 2014-05-30T15:27:58-03:00
            [INFO] Final Memory: 50M/355M
            [INFO] ------------------------------------------------------------------------
            
            • 3. Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
              kwintesencja

              Here is my server.log for my last execution that hang(i've run with jboss as remote):

              15:30:47,481 INFO  [org.jboss.as.repository] (management-handler-thread - 9) JBAS014900: Conteúdo adicionado na localização C:\jboss-eap-6.2\standalone\data\content\f4\1f820ce0101e10150e847c1fc60121f1fe9bb2\content
              15:30:47,484 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015876: Iniciando a implantação do "70318a17-8203-4e93-9986-83074f698491.war" (runtime-name: "70318a17-8203-4e93-9986-83074f698491.war")
              15:30:48,096 INFO  [org.jboss.as.jpa] (MSC service thread 1-5) JBAS011401: Leia a persistence.xml para archetypeTestPU
              15:30:48,139 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) JBAS010400: Limite da fonte de dados [java:jboss/datasources/ExampleDS2]
              15:30:48,190 INFO  [org.jboss.weld.deployer] (MSC service thread 1-6) JBAS016002: Processamento da implantação weld 70318a17-8203-4e93-9986-83074f698491.war
              15:30:48,202 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-6) JNDI bindings for session bean named RestDataset in deployment unit deployment "70318a17-8203-4e93-9986-83074f698491.war" are as follows:
              
                  java:global/70318a17-8203-4e93-9986-83074f698491/RestDataset!org.conventions.archetype.test.rest.RestDataset
                  java:app/70318a17-8203-4e93-9986-83074f698491/RestDataset!org.conventions.archetype.test.rest.RestDataset
                  java:module/RestDataset!org.conventions.archetype.test.rest.RestDataset
                  java:global/70318a17-8203-4e93-9986-83074f698491/RestDataset
                  java:app/70318a17-8203-4e93-9986-83074f698491/RestDataset
                  java:module/RestDataset
              
              15:30:48,202 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-6) JNDI bindings for session bean named AppConfigProvider in deployment unit deployment "70318a17-8203-4e93-9986-83074f698491.war" are as follows:
              
                  java:global/70318a17-8203-4e93-9986-83074f698491/AppConfigProvider!org.conventions.archetype.configuration.AppConfigProvider
                  java:app/70318a17-8203-4e93-9986-83074f698491/AppConfigProvider!org.conventions.archetype.configuration.AppConfigProvider
                  java:module/AppConfigProvider!org.conventions.archetype.configuration.AppConfigProvider
                  java:global/70318a17-8203-4e93-9986-83074f698491/AppConfigProvider
                  java:app/70318a17-8203-4e93-9986-83074f698491/AppConfigProvider
                  java:module/AppConfigProvider
              
              15:30:48,203 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-6) JNDI bindings for session bean named GroupServiceImpl in deployment unit deployment "70318a17-8203-4e93-9986-83074f698491.war" are as follows:
              
                  java:global/70318a17-8203-4e93-9986-83074f698491/GroupServiceImpl!org.conventions.archetype.service.GroupService
                  java:app/70318a17-8203-4e93-9986-83074f698491/GroupServiceImpl!org.conventions.archetype.service.GroupService
                  java:module/GroupServiceImpl!org.conventions.archetype.service.GroupService
                  java:global/70318a17-8203-4e93-9986-83074f698491/GroupServiceImpl
                  java:app/70318a17-8203-4e93-9986-83074f698491/GroupServiceImpl
                  java:module/GroupServiceImpl
              
              15:30:48,203 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-6) JNDI bindings for session bean named UserServiceImpl in deployment unit deployment "70318a17-8203-4e93-9986-83074f698491.war" are as follows:
              
                  java:global/70318a17-8203-4e93-9986-83074f698491/UserServiceImpl!org.conventions.archetype.service.UserService
                  java:app/70318a17-8203-4e93-9986-83074f698491/UserServiceImpl!org.conventions.archetype.service.UserService
                  java:module/UserServiceImpl!org.conventions.archetype.service.UserService
                  java:global/70318a17-8203-4e93-9986-83074f698491/UserServiceImpl
                  java:app/70318a17-8203-4e93-9986-83074f698491/UserServiceImpl
                  java:module/UserServiceImpl
              
              15:30:48,203 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-6) JNDI bindings for session bean named TestService in deployment unit deployment "70318a17-8203-4e93-9986-83074f698491.war" are as follows:
              
                  java:global/70318a17-8203-4e93-9986-83074f698491/TestService!org.conventions.archetype.test.util.TestService
                  java:app/70318a17-8203-4e93-9986-83074f698491/TestService!org.conventions.archetype.test.util.TestService
                  java:module/TestService!org.conventions.archetype.test.util.TestService
                  java:global/70318a17-8203-4e93-9986-83074f698491/TestService
                  java:app/70318a17-8203-4e93-9986-83074f698491/TestService
                  java:module/TestService
              
              15:30:48,318 INFO  [org.jboss.weld.deployer] (MSC service thread 1-1) JBAS016005: Iniciando os  Serviços para a implantação CDI: 70318a17-8203-4e93-9986-83074f698491.war
              15:30:48,323 INFO  [org.jboss.weld.deployer] (MSC service thread 1-7) JBAS016008: Inicialização do serviço weld para a implantação 70318a17-8203-4e93-9986-83074f698491.war
              15:30:48,323 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 62) JBAS011402: Iniciando Persistence Unit Serviço '70318a17-8203-4e93-9986-83074f698491.war#archetypeTestPU'
              15:30:48,323 INFO  [org.hibernate.ejb.Ejb3Configuration] (ServerService Thread Pool -- 62) HHH000204: Processing PersistenceUnitInfo [
                  name: archetypeTestPU
                  ...]
              15:30:48,373 INFO  [org.hibernate.service.jdbc.connections.internal.ConnectionProviderInitiator] (ServerService Thread Pool -- 62) HHH000130: Instantiating explicit connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
              15:30:48,377 INFO  [org.hibernate.dialect.Dialect] (ServerService Thread Pool -- 62) HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
              15:30:48,377 WARN  [org.hibernate.dialect.H2Dialect] (ServerService Thread Pool -- 62) HHH000431: Unable to determine H2 database version, certain features may not work
              15:30:48,389 INFO  [org.hibernate.engine.transaction.internal.TransactionFactoryInitiator] (ServerService Thread Pool -- 62) HHH000268: Transaction strategy: org.hibernate.engine.transaction.internal.jta.CMTTransactionFactory
              15:30:48,389 INFO  [org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory] (ServerService Thread Pool -- 62) HHH000397: Using ASTQueryTranslatorFactory
              15:30:48,414 INFO  [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 62) HHH000227: Running hbm2ddl schema export
              15:30:48,415 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: alter table group__role_ drop constraint FK_j541jhdg113aabujlji633kco
              
              15:30:48,416 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: alter table group__role_ drop constraint FK_krlo76r437n650oqk42ngxgo5
              
              15:30:48,416 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: alter table user__group_ drop constraint FK_togse6vcq98dop7cpojehk8pw
              
              15:30:48,416 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: alter table user__group_ drop constraint FK_ep6n2mr6s1k26cyf2hixs86ii
              
              15:30:48,417 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: drop table group_ if exists
              
              15:30:48,417 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: drop table group__role_ if exists
              
              15:30:48,417 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: drop table role_ if exists
              
              15:30:48,418 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: drop table user_ if exists
              
              15:30:48,418 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: drop table user__group_ if exists
              
              15:30:48,418 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: drop sequence hibernate_sequence
              
              15:30:48,419 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: create table group_ (id bigint not null, createDate timestamp, updateDate timestamp, version integer, name varchar(255), primary key (id))
              
              15:30:48,419 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: create table group__role_ (groups_id bigint not null, roles_id bigint not null, primary key (groups_id, roles_id))
              
              15:30:48,420 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: create table role_ (id bigint not null, createDate timestamp, updateDate timestamp, version integer, name varchar(255), primary key (id))
              
              15:30:48,420 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: create table user_ (id bigint not null, createDate timestamp, updateDate timestamp, version integer, name varchar(255) not null, password varchar(255) not null, primary key (id))
              
              15:30:48,420 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: create table user__group_ (users_id bigint not null, groups_id bigint not null)
              
              15:30:48,420 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: alter table group__role_ add constraint FK_j541jhdg113aabujlji633kco foreign key (roles_id) references role_
              
              15:30:48,421 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: alter table group__role_ add constraint FK_krlo76r437n650oqk42ngxgo5 foreign key (groups_id) references group_
              
              15:30:48,422 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: alter table user__group_ add constraint FK_togse6vcq98dop7cpojehk8pw foreign key (groups_id) references group_
              
              15:30:48,423 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: alter table user__group_ add constraint FK_ep6n2mr6s1k26cyf2hixs86ii foreign key (users_id) references user_
              
              15:30:48,424 INFO  [stdout] (ServerService Thread Pool -- 62) Hibernate: create sequence hibernate_sequence start with 1 increment by 1
              
              15:30:48,424 INFO  [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 62) HHH000230: Schema export complete
              15:30:48,454 INFO  [org.apache.myfaces.extensions.cdi.core.api.provider.ServiceProvider] (MSC service thread 1-8) org.apache.myfaces.extensions.cdi.core.impl.provider.DefaultServiceProvider installed successfully.
              15:30:48,454 INFO  [org.apache.myfaces.extensions.cdi.core.api.provider.ServiceProvider] (MSC service thread 1-8) org.apache.myfaces.extensions.cdi.core.impl.provider.DefaultServiceProviderContext installed successfully.
              15:30:48,480 INFO  [org.apache.myfaces.extensions.cdi.core.impl.projectstage.ProjectStageProducer] (MSC service thread 1-8) Computed the following CODI ProjectStage: Production
              15:30:49,073 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: delete from group__role_
              
              15:30:49,075 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: delete from user__group_
              
              15:30:49,075 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: delete from role_
              
              15:30:49,076 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: delete from group_
              
              15:30:49,077 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: delete from user_
              
              15:30:49,078 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: call next value for hibernate_sequence
              
              15:30:49,079 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: call next value for hibernate_sequence
              
              15:30:49,079 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: call next value for hibernate_sequence
              
              15:30:49,082 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: insert into user_ (createDate, updateDate, version, name, password, id) values (?, ?, ?, ?, ?, ?)
              
              15:30:49,083 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: insert into user_ (createDate, updateDate, version, name, password, id) values (?, ?, ?, ?, ?, ?)
              
              15:30:49,084 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: insert into group_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
              
              15:30:49,084 INFO  [stdout] (ServerService Thread Pool -- 70) Hibernate: insert into user__group_ (users_id, groups_id) values (?, ?)
              
              15:30:49,086 INFO  [org.jboss.web] (ServerService Thread Pool -- 70) JBAS018210: Registra o contexto da web: /70318a17-8203-4e93-9986-83074f698491
              15:30:49,107 INFO  [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 70) Inicializando Mojarra 2.1.19-jbossorg-1 20131024-0833 para o contexto '/70318a17-8203-4e93-9986-83074f698491'
              15:30:49,359 INFO  [org.conventionsframework.system.VersionSystemEventListener] (ServerService Thread Pool -- 70) Running Conventions 1.1.1
              15:30:49,361 INFO  [org.primefaces.webapp.PostConstructApplicationEventListener] (ServerService Thread Pool -- 70) Running on PrimeFaces 4.0
              15:30:49,365 INFO  [ConventionsFilter] (ServerService Thread Pool -- 70) initializing conventions filter
              15:30:49,418 INFO  [org.jboss.as.server] (management-handler-thread - 9) JBAS018559: Implantado "70318a17-8203-4e93-9986-83074f698491.war" (runtime-name: "70318a17-8203-4e93-9986-83074f698491.war")
              15:30:50,806 INFO  [org.jboss.resteasy.cdi.CdiInjectorFactory] (http-/127.0.0.1:8080-6) Found BeanManager at java:comp/BeanManager
              15:30:50,822 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (http-/127.0.0.1:8080-6) Deploying javax.ws.rs.core.Application: class org.conventions.archetype.rest.ApplicationRest$Proxy$_$$_WeldClientProxy
              15:30:50,834 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-6) logged in:false
              15:30:50,839 INFO  [stdout] (http-/127.0.0.1:8080-6) Hibernate: select this_.id as id1_3_0_, this_.createDate as createDa2_3_0_, this_.updateDate as updateDa3_3_0_, this_.version as version4_3_0_, this_.name as name5_3_0_, this_.password as password6_3_0_ from user_ this_
              
              15:30:50,846 INFO  [stdout] (http-/127.0.0.1:8080-6) Hibernate: select groups0_.users_id as users_id1_3_1_, groups0_.groups_id as groups_i2_4_1_, group1_.id as id1_0_0_, group1_.createDate as createDa2_0_0_, group1_.updateDate as updateDa3_0_0_, group1_.version as version4_0_0_, group1_.name as name5_0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
              
              15:30:50,850 INFO  [stdout] (http-/127.0.0.1:8080-6) Hibernate: select roles0_.groups_id as groups_i1_0_1_, roles0_.roles_id as roles_id2_1_1_, role1_.id as id1_2_0_, role1_.createDate as createDa2_2_0_, role1_.updateDate as updateDa3_2_0_, role1_.version as version4_2_0_, role1_.name as name5_2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
              
              15:30:50,853 INFO  [stdout] (http-/127.0.0.1:8080-6) Hibernate: select groups0_.users_id as users_id1_3_1_, groups0_.groups_id as groups_i2_4_1_, group1_.id as id1_0_0_, group1_.createDate as createDa2_0_0_, group1_.updateDate as updateDa3_0_0_, group1_.version as version4_0_0_, group1_.name as name5_0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
              
              15:30:51,015 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-7) logged in:false
              15:30:51,051 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: select count(this_.id) as y0_ from user_ this_ where lower(this_.name) like ?
              
              15:30:51,052 INFO  [stdout] (http-/127.0.0.1:8080-7) adminHibernate: call next value for hibernate_sequence
              
              15:30:51,053 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: call next value for hibernate_sequence
              
              15:30:51,054 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: call next value for hibernate_sequence
              
              15:30:51,055 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: call next value for hibernate_sequence
              
              15:30:51,056 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: call next value for hibernate_sequence
              
              15:30:51,057 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into user_ (createDate, updateDate, version, name, password, id) values (?, ?, ?, ?, ?, ?)
              
              15:30:51,058 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into group_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
              
              15:30:51,059 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into role_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
              
              15:30:51,060 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into group_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
              
              15:30:51,061 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into role_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
              
              15:30:51,062 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into user__group_ (users_id, groups_id) values (?, ?)
              
              15:30:51,062 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into user__group_ (users_id, groups_id) values (?, ?)
              
              15:30:51,063 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into group__role_ (groups_id, roles_id) values (?, ?)
              
              15:30:51,063 INFO  [stdout] (http-/127.0.0.1:8080-7) Hibernate: insert into group__role_ (groups_id, roles_id) values (?, ?)
              
              15:30:51,101 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-5) logged in:false
              15:30:51,105 INFO  [stdout] (http-/127.0.0.1:8080-5) Hibernate: select count(this_.id) as y0_ from user_ this_ where lower(this_.name) like ?
              
              15:30:51,106 INFO  [stdout] (http-/127.0.0.1:8080-5) adminHibernate: call next value for hibernate_sequence
              
              15:30:51,107 INFO  [stdout] (http-/127.0.0.1:8080-5) Hibernate: insert into user_ (createDate, updateDate, version, name, password, id) values (?, ?, ?, ?, ?, ?)
              
              15:30:51,143 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-4) logged in:false
              15:30:51,146 INFO  [stdout] (http-/127.0.0.1:8080-4) Hibernate: select this_.id as id1_3_0_, this_.createDate as createDa2_3_0_, this_.updateDate as updateDa3_3_0_, this_.version as version4_3_0_, this_.name as name5_3_0_, this_.password as password6_3_0_ from user_ this_ where (lower(this_.name) like ?)
              
              15:30:51,148 INFO  [stdout] (http-/127.0.0.1:8080-4) Hibernate: select groups0_.users_id as users_id1_3_1_, groups0_.groups_id as groups_i2_4_1_, group1_.id as id1_0_0_, group1_.createDate as createDa2_0_0_, group1_.updateDate as updateDa3_0_0_, group1_.version as version4_0_0_, group1_.name as name5_0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
              
              15:30:51,150 INFO  [stdout] (http-/127.0.0.1:8080-4) Hibernate: select roles0_.groups_id as groups_i1_0_1_, roles0_.roles_id as roles_id2_1_1_, role1_.id as id1_2_0_, role1_.createDate as createDa2_2_0_, role1_.updateDate as updateDa3_2_0_, role1_.version as version4_2_0_, role1_.name as name5_2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
              
              15:30:51,185 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-3) logged in:false
              15:30:51,188 INFO  [stdout] (http-/127.0.0.1:8080-3) Hibernate: select this_.id as id1_3_0_, this_.createDate as createDa2_3_0_, this_.updateDate as updateDa3_3_0_, this_.version as version4_3_0_, this_.name as name5_3_0_, this_.password as password6_3_0_ from user_ this_ where (lower(this_.name) like ?)
              
              15:30:51,190 INFO  [stdout] (http-/127.0.0.1:8080-3) Hibernate: select groups0_.users_id as users_id1_3_1_, groups0_.groups_id as groups_i2_4_1_, group1_.id as id1_0_0_, group1_.createDate as createDa2_0_0_, group1_.updateDate as updateDa3_0_0_, group1_.version as version4_0_0_, group1_.name as name5_0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
              
              15:30:51,192 INFO  [stdout] (http-/127.0.0.1:8080-3) Hibernate: select roles0_.groups_id as groups_i1_0_1_, roles0_.roles_id as roles_id2_1_1_, role1_.id as id1_2_0_, role1_.createDate as createDa2_2_0_, role1_.updateDate as updateDa3_2_0_, role1_.version as version4_2_0_, role1_.name as name5_2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
              
              15:30:51,195 INFO  [stdout] (http-/127.0.0.1:8080-3) Hibernate: select roles0_.groups_id as groups_i1_0_1_, roles0_.roles_id as roles_id2_1_1_, role1_.id as id1_2_0_, role1_.createDate as createDa2_2_0_, role1_.updateDate as updateDa3_2_0_, role1_.version as version4_2_0_, role1_.name as name5_2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
              
              15:30:51,208 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-2) logged in:false
              15:30:51,210 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-2) logged in:false
              15:30:51,211 INFO  [stdout] (http-/127.0.0.1:8080-2) adminHibernate: select user0_.id as id1_3_0_, group2_.id as id1_0_1_, user0_.createDate as createDa2_3_0_, user0_.updateDate as updateDa3_3_0_, user0_.version as version4_3_0_, user0_.name as name5_3_0_, user0_.password as password6_3_0_, group2_.createDate as createDa2_0_1_, group2_.updateDate as updateDa3_0_1_, group2_.version as version4_0_1_, group2_.name as name5_0_1_, groups1_.users_id as users_id1_3_0__, groups1_.groups_id as groups_i2_4_0__ from user_ user0_ left outer join user__group_ groups1_ on user0_.id=groups1_.users_id left outer join group_ group2_ on groups1_.groups_id=group2_.id where user0_.name=? and user0_.password=?
              
              15:30:51,213 INFO  [stdout] (http-/127.0.0.1:8080-2) Hibernate: select roles0_.groups_id as groups_i1_0_1_, roles0_.roles_id as roles_id2_1_1_, role1_.id as id1_2_0_, role1_.createDate as createDa2_2_0_, role1_.updateDate as updateDa3_2_0_, role1_.version as version4_2_0_, role1_.name as name5_2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
              
              15:30:51,214 INFO  [stdout] (http-/127.0.0.1:8080-2) Hibernate: select roles0_.groups_id as groups_i1_0_1_, roles0_.roles_id as roles_id2_1_1_, role1_.id as id1_2_0_, role1_.createDate as createDa2_2_0_, role1_.updateDate as updateDa3_2_0_, role1_.version as version4_2_0_, role1_.name as name5_2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
              
              15:30:51,216 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-2) logged in:true
              15:30:51,216 INFO  [stdout] (http-/127.0.0.1:8080-2) Hibernate: select user0_.id as id1_3_0_, user0_.createDate as createDa2_3_0_, user0_.updateDate as updateDa3_3_0_, user0_.version as version4_3_0_, user0_.name as name5_3_0_, user0_.password as password6_3_0_ from user_ user0_ where user0_.id=?
              
              15:30:51,217 INFO  [stdout] (http-/127.0.0.1:8080-2) Hibernate: select groups0_.users_id as users_id1_3_1_, groups0_.groups_id as groups_i2_4_1_, group1_.id as id1_0_0_, group1_.createDate as createDa2_0_0_, group1_.updateDate as updateDa3_0_0_, group1_.version as version4_0_0_, group1_.name as name5_0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
              
              15:30:51,256 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-2) logged in:false
              15:30:51,259 INFO  [stdout] (http-/127.0.0.1:8080-2) Hibernate: select this_.id as id1_3_0_, this_.createDate as createDa2_3_0_, this_.updateDate as updateDa3_3_0_, this_.version as version4_3_0_, this_.name as name5_3_0_, this_.password as password6_3_0_ from user_ this_ where (lower(this_.name) like ?)
              
              15:30:51,261 INFO  [stdout] (http-/127.0.0.1:8080-2) Hibernate: select groups0_.users_id as users_id1_3_1_, groups0_.groups_id as groups_i2_4_1_, group1_.id as id1_0_0_, group1_.createDate as createDa2_0_0_, group1_.updateDate as updateDa3_0_0_, group1_.version as version4_0_0_, group1_.name as name5_0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
              
              15:30:51,272 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-1) logged in:false
              15:30:51,276 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-1) logged in:false
              15:30:51,276 INFO  [stdout] (http-/127.0.0.1:8080-1) adminHibernate: select user0_.id as id1_3_0_, group2_.id as id1_0_1_, user0_.createDate as createDa2_3_0_, user0_.updateDate as updateDa3_3_0_, user0_.version as version4_3_0_, user0_.name as name5_3_0_, user0_.password as password6_3_0_, group2_.createDate as createDa2_0_1_, group2_.updateDate as updateDa3_0_1_, group2_.version as version4_0_1_, group2_.name as name5_0_1_, groups1_.users_id as users_id1_3_0__, groups1_.groups_id as groups_i2_4_0__ from user_ user0_ left outer join user__group_ groups1_ on user0_.id=groups1_.users_id left outer join group_ group2_ on groups1_.groups_id=group2_.id where user0_.name=? and user0_.password=?
              
              15:30:51,278 INFO  [SecurityContextImpl] (http-/127.0.0.1:8080-1) logged in:true
              15:30:51,290 INFO  [org.jboss.web] (ServerService Thread Pool -- 70) JBAS018224: Desregistra o contexto da web: /70318a17-8203-4e93-9986-83074f698491
              15:30:51,296 INFO  [org.jboss.weld.deployer] (MSC service thread 1-5) JBAS016009: Interrupção do serviço Weld para a implantação 70318a17-8203-4e93-9986-83074f698491.war
              15:30:51,296 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 74) JBAS011403: Interrompendo Persistence Unit Serviço '70318a17-8203-4e93-9986-83074f698491.war#archetypeTestPU'
              15:30:51,299 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-6) JBAS010409: Fonte de dados sem limite [java:jboss/datasources/ExampleDS2]
              15:30:51,338 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) JBAS015877: Implantação encerrada 70318a17-8203-4e93-9986-83074f698491.war (runtime-name: 70318a17-8203-4e93-9986-83074f698491.war) em 48ms
              15:30:51,434 INFO  [org.jboss.as.repository] (management-handler-thread - 10) JBAS014901: Conteúdo removido da localização C:\jboss-eap-6.2\standalone\data\content\f4\1f820ce0101e10150e847c1fc60121f1fe9bb2\content
              15:30:51,434 INFO  [org.jboss.as.server] (management-handler-thread - 10) JBAS018558: Desimplantado "70318a17-8203-4e93-9986-83074f698491.war" (runtime-name: "70318a17-8203-4e93-9986-83074f698491.war")
              
              • 4. Re: Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
                kwintesencja

                here is a jboss-managed(7.2.0) execution output, it executes UserRest test which is testable false a then freezes on HelloArquillianIt:

                 

                C:\projetos\archetype>mvn clean test -Pjboss-managed -Pit-tests -Pjacoco
                [INFO] Scanning for projects...
                [INFO]
                [INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
                [INFO]
                [INFO] ------------------------------------------------------------------------
                [INFO] Building conventions-archetype 1.0-SNAPSHOT
                [INFO] ------------------------------------------------------------------------
                [INFO]
                [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ archetype ---
                [INFO] Deleting C:\projetos\archetype\target
                [INFO]
                [INFO] --- jacoco-maven-plugin:0.7.1.201405082137:prepare-agent (default) @ archetype ---
                [INFO] argLine set to -javaagent:C:\\Users\\rafael-pestano\\.m2\\repository\\org\\jacoco\\org.jacoco.agent\\0.7.1.201405082137\\org.jacoco.agent-0.7.1.201405082137-runtime.jar=destfile=C:\\projetos\\archetype\\target\\jacoco.exec
                [INFO]
                [INFO] --- maven-dependency-plugin:2.8:copy-dependencies (default-cli) @ archetype ---
                
                [INFO]
                [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ archetype ---
                [INFO] Using 'UTF-8' encoding to copy filtered resources.
                [INFO] Copying 4 resources
                [INFO]
                [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ archetype ---
                [INFO] Changes detected - recompiling the module!
                [INFO] Compiling 33 source files to C:\projetos\archetype\target\classes
                [WARNING] /C:/projetos/archetype/src/main/java/org/conventions/archetype/bean/UserMBean.java: Some input files use unchecked or unsafe operations.
                [WARNING] /C:/projetos/archetype/src/main/java/org/conventions/archetype/bean/UserMBean.java: Recompile with -Xlint:unchecked for details.
                [INFO]
                [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ archetype ---
                [INFO] Using 'UTF-8' encoding to copy filtered resources.
                [INFO] Copying 6 resources
                [INFO] Copying 5 resources
                [INFO]
                [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ archetype ---
                [INFO] Changes detected - recompiling the module!
                [INFO] Compiling 41 source files to C:\projetos\archetype\target\test-classes
                [INFO]
                [INFO] --- maven-dependency-plugin:2.8:unpack (unpack) @ archetype ---
                [INFO] Configured Artifact: com.googlecode:jboss-as-dist:7.2.0.Final:zip
                [INFO] Unpacking C:\Users\rafael-pestano\.m2\repository\com\googlecode\jboss-as-dist\7.2.0.Final\jboss-as-dist-7.2.0.Final.zip to C:\projetos\archetype\target with includes "" and excludes ""
                [INFO]
                [INFO] --- maven-surefire-plugin:2.16:test (default-test) @ archetype ---
                [INFO] Surefire report directory: C:\projetos\archetype\target\surefire-reports
                
                -------------------------------------------------------
                T E S T S
                -------------------------------------------------------
                Running org.conventions.archetype.test.rest.UserRestIt
                SLF4J: Class path contains multiple SLF4J bindings.
                SLF4J: Found binding in [jar:file:/C:/Users/rafael-pestano/.m2/repository/org/slf4j/slf4j-log4j12/1.7.5/slf4j-log4j12-1.7.5.jar!/org/slf4j/impl/StaticLoggerBinder.class]
                SLF4J: Found binding in [jar:file:/C:/Users/rafael-pestano/.m2/repository/org/glassfish/main/extras/glassfish-embedded-all/3.1.2/glassfish-embedded-all-3.1.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
                SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
                SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
                Mai 30, 2014 3:36:38 PM org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusedSessionPermanentFileStorage readStore
                Informaþ§es: Reused session store is not available at C:\Users\rafael-pestano\.drone-webdriver-session-store, a new one will be created.
                Mai 30, 2014 3:36:40 PM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
                Informaþ§es: Starting container with: ["C:\Program Files\Java\jdk1.7.0_51\bin\java", -Xmx512m, -XX:MaxPermSize=256m, -Djboss.bind.address=localhost, -Darquillian.debug=false, -ea, -Djboss.home.dir=C:\projetos\archetype\target/jboss-as-7.2.0.Final, -Dorg.jboss.b
                oot.log.file=C:\projetos\archetype\target\jboss-as-7.2.0.Final\standalone\log\boot.log, -Dlogging.configuration=file:/C:/projetos/archetype/target/jboss-as-7.2.0.Final/standalone/configuration/logging.properties, -Djboss.bundles.dir=C:\projetos\archetype\target
                /jboss-as-7.2.0.Final\bundles, -jar, C:\projetos\archetype\target\jboss-as-7.2.0.Final\jboss-modules.jar, -mp, C:\projetos\archetype\target/jboss-as-7.2.0.Final\modules, -jaxpmodule, javax.xml.jaxp-provider, org.jboss.as.standalone, -server-config, standalone.x
                ml]
                15:36:40,830 INFO  [org.jboss.modules] (main) JBoss Modules version 1.2.0.CR1
                15:36:41,033 INFO  [org.jboss.msc] (main) JBoss MSC version 1.0.4.GA
                15:36:41,083 INFO  [org.jboss.as] (MSC service thread 1-6) JBAS015899: JBoss AS 7.2.0.Final "Janus" starting
                15:36:42,249 INFO  [org.xnio] (MSC service thread 1-3) XNIO Version 3.0.7.GA
                15:36:42,250 INFO  [org.jboss.as.server] (Controller Boot Thread) JBAS015888: Creating http management service using socket-binding (management-http)
                15:36:42,254 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.0.7.GA
                15:36:42,261 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 3.2.14.GA
                15:36:42,318 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 29) JBAS010280: Activating Infinispan subsystem.
                15:36:42,320 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 37) JBAS011800: Activating Naming Subsystem
                15:36:42,337 INFO  [org.jboss.as.naming] (MSC service thread 1-5) JBAS011802: Starting Naming Service
                15:36:42,340 INFO  [org.jboss.as.connector.logging] (MSC service thread 1-2) JBAS010408: Starting JCA Subsystem (JBoss IronJacamar 1.0.15.Final)
                15:36:42,358 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 25) JBAS010403: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
                15:36:42,360 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 35) JBAS012605: Activated the following JSF Implementations: [main, 1.2]
                15:36:42,363 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-1) JBAS015400: Bound mail session [java:jboss/mail/Default]
                15:36:42,376 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 42) JBAS013171: Activating Security Subsystem
                15:36:42,386 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 46) JBAS015537: Activating WebServices Extension
                15:36:43,231 INFO  [org.jboss.as.security] (MSC service thread 1-5) JBAS013170: Current PicketBox version=4.0.15.Final
                15:36:43,280 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-5) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
                15:36:43,378 INFO  [org.apache.coyote.http11] (MSC service thread 1-5) JBWEB003001: Coyote HTTP/1.1 initializing on : http-localhost/127.0.0.1:8080
                15:36:43,381 INFO  [org.apache.coyote.http11] (MSC service thread 1-5) JBWEB003000: Coyote HTTP/1.1 starting on: http-localhost/127.0.0.1:8080
                15:36:43,978 INFO  [org.jboss.ws.common.management] (MSC service thread 1-1) JBWS022052: Starting JBoss Web Services - Stack CXF Server 4.1.3.Final
                15:36:44,032 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-7) JBAS015012: Started FileSystemDeploymentService for directory C:\projetos\archetype\target\jboss-as-7.2.0.Final\standalone\deployments
                15:36:44,033 INFO  [org.jboss.as.remoting] (MSC service thread 1-6) JBAS017100: Listening on 127.0.0.1:9999
                15:36:44,033 INFO  [org.jboss.as.remoting] (MSC service thread 1-2) JBAS017100: Listening on 127.0.0.1:4447
                15:36:44,487 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015961: Http management interface listening on http://127.0.0.1:9990/management
                15:36:44,487 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015951: Admin console listening on http://127.0.0.1:9990
                15:36:44,488 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015874: JBoss AS 7.2.0.Final "Janus" started in 4090ms - Started 121 of 175 services (53 services are passive or on-demand)
                d213333c-878e-4961-b7a6-01d7f69b56dd.war:
                /WEB-INF/
                /WEB-INF/lib/
                /WEB-INF/lib/httpcore-4.2.5.jar
                /WEB-INF/lib/jackson-core-asl-1.5.5.jar
                /WEB-INF/lib/primefaces-4.0.jar
                /WEB-INF/lib/all-themes-1.0.10.jar
                /WEB-INF/lib/gson-2.2.4.jar
                /WEB-INF/lib/commons-lang3-3.1.jar
                /WEB-INF/lib/conventions-core-1.1.1.jar
                /WEB-INF/lib/myfaces-extcdi-bundle-jsf20-1.0.6.jar
                /WEB-INF/faces-config.xml
                /WEB-INF/beans.xml
                /WEB-INF/web.xml
                /WEB-INF/jbossas-ds.xml
                /WEB-INF/classes/
                /WEB-INF/classes/messages_pt.properties
                /WEB-INF/classes/messages_en.properties
                /WEB-INF/classes/org/
                /WEB-INF/classes/org/conventions/
                /WEB-INF/classes/org/conventions/archetype/
                /WEB-INF/classes/org/conventions/archetype/event/
                /WEB-INF/classes/org/conventions/archetype/event/UpdateList.class
                /WEB-INF/classes/org/conventions/archetype/event/UpdateUserRoles.class
                /WEB-INF/classes/org/conventions/archetype/security/
                /WEB-INF/classes/org/conventions/archetype/security/SecurityInterceptor.class
                /WEB-INF/classes/org/conventions/archetype/security/SecurityContextImpl.class
                /WEB-INF/classes/org/conventions/archetype/model/
                /WEB-INF/classes/org/conventions/archetype/model/User.class
                /WEB-INF/classes/org/conventions/archetype/model/Role.class
                /WEB-INF/classes/org/conventions/archetype/model/States.class
                /WEB-INF/classes/org/conventions/archetype/model/Group.class
                /WEB-INF/classes/org/conventions/archetype/util/
                /WEB-INF/classes/org/conventions/archetype/util/Pages.class
                /WEB-INF/classes/org/conventions/archetype/util/AppConstants.class
                /WEB-INF/classes/org/conventions/archetype/util/AppConstants$Role.class
                /WEB-INF/classes/org/conventions/archetype/util/Utils.class
                /WEB-INF/classes/org/conventions/archetype/test/
                /WEB-INF/classes/org/conventions/archetype/test/rest/
                /WEB-INF/classes/org/conventions/archetype/test/rest/RestDataset.class
                /WEB-INF/classes/org/conventions/archetype/test/util/
                /WEB-INF/classes/org/conventions/archetype/test/util/TestService.class
                /WEB-INF/classes/org/conventions/archetype/rest/
                /WEB-INF/classes/org/conventions/archetype/rest/ApplicationRest.class
                /WEB-INF/classes/org/conventions/archetype/rest/UserRest.class
                /WEB-INF/classes/org/conventions/archetype/qualifier/
                /WEB-INF/classes/org/conventions/archetype/qualifier/ListToUpdate.class
                /WEB-INF/classes/org/conventions/archetype/qualifier/ListToUpdate$ListType.class
                /WEB-INF/classes/org/conventions/archetype/service/
                /WEB-INF/classes/org/conventions/archetype/service/GroupService.class
                /WEB-INF/classes/org/conventions/archetype/service/GroupServiceImpl.class
                /WEB-INF/classes/org/conventions/archetype/service/UserServiceImpl.class
                /WEB-INF/classes/org/conventions/archetype/service/RoleService.class
                /WEB-INF/classes/org/conventions/archetype/service/UserService.class
                /WEB-INF/classes/org/conventions/archetype/service/RoleServiceImpl.class
                /WEB-INF/classes/org/conventions/archetype/configuration/
                /WEB-INF/classes/org/conventions/archetype/configuration/AppConfigProvider.class
                /WEB-INF/classes/org/conventions/archetype/bean/
                /WEB-INF/classes/org/conventions/archetype/bean/ComboMBean.class
                /WEB-INF/classes/META-INF/
                /WEB-INF/classes/META-INF/persistence.xml
                15:36:48,027 INFO  [org.jboss.as.repository] (management-handler-thread - 2) JBAS014900: Content added at location C:\projetos\archetype\target\jboss-as-7.2.0.Final\standalone\data\content\4c\41975f3225a2af06e8d5826e9f8972ef7633ee\content
                15:36:48,050 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of "d213333c-878e-4961-b7a6-01d7f69b56dd.war" (runtime-name: "d213333c-878e-4961-b7a6-01d7f69b56dd.war")
                15:36:48,935 INFO  [org.jboss.as.jpa] (MSC service thread 1-6) JBAS011401: Read persistence.xml for archetypeTestPU
                15:36:49,056 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-7) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS2]
                15:36:49,177 INFO  [org.jboss.weld.deployer] (MSC service thread 1-3) JBAS016002: Processing weld deployment d213333c-878e-4961-b7a6-01d7f69b56dd.war
                15:36:49,200 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-3) JNDI bindings for session bean named RestDataset in deployment unit deployment "d213333c-878e-4961-b7a6-01d7f69b56dd.war" are as follows
                :
                
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/RestDataset!org.conventions.archetype.test.rest.RestDataset
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/RestDataset!org.conventions.archetype.test.rest.RestDataset
                        java:module/RestDataset!org.conventions.archetype.test.rest.RestDataset
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/RestDataset
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/RestDataset
                        java:module/RestDataset
                
                15:36:49,201 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-3) JNDI bindings for session bean named AppConfigProvider in deployment unit deployment "d213333c-878e-4961-b7a6-01d7f69b56dd.war" are as f
                ollows:
                
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/AppConfigProvider!org.conventions.archetype.configuration.AppConfigProvider
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/AppConfigProvider!org.conventions.archetype.configuration.AppConfigProvider
                        java:module/AppConfigProvider!org.conventions.archetype.configuration.AppConfigProvider
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/AppConfigProvider
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/AppConfigProvider
                        java:module/AppConfigProvider
                
                15:36:49,204 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-3) JNDI bindings for session bean named GroupServiceImpl in deployment unit deployment "d213333c-878e-4961-b7a6-01d7f69b56dd.war" are as fo
                llows:
                
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/GroupServiceImpl!org.conventions.archetype.service.GroupService
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/GroupServiceImpl!org.conventions.archetype.service.GroupService
                        java:module/GroupServiceImpl!org.conventions.archetype.service.GroupService
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/GroupServiceImpl
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/GroupServiceImpl
                        java:module/GroupServiceImpl
                
                15:36:49,204 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-3) JNDI bindings for session bean named UserServiceImpl in deployment unit deployment "d213333c-878e-4961-b7a6-01d7f69b56dd.war" are as fol
                lows:
                
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/UserServiceImpl!org.conventions.archetype.service.UserService
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/UserServiceImpl!org.conventions.archetype.service.UserService
                        java:module/UserServiceImpl!org.conventions.archetype.service.UserService
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/UserServiceImpl
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/UserServiceImpl
                        java:module/UserServiceImpl
                
                15:36:49,205 INFO  [org.jboss.as.ejb3.deployment.processors.EjbJndiBindingsDeploymentUnitProcessor] (MSC service thread 1-3) JNDI bindings for session bean named TestService in deployment unit deployment "d213333c-878e-4961-b7a6-01d7f69b56dd.war" are as follows
                :
                
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/TestService!org.conventions.archetype.test.util.TestService
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/TestService!org.conventions.archetype.test.util.TestService
                        java:module/TestService!org.conventions.archetype.test.util.TestService
                        java:global/d213333c-878e-4961-b7a6-01d7f69b56dd/TestService
                        java:app/d213333c-878e-4961-b7a6-01d7f69b56dd/TestService
                        java:module/TestService
                
                15:36:49,498 INFO  [org.jboss.weld.deployer] (MSC service thread 1-3) JBAS016005: Starting Services for CDI deployment: d213333c-878e-4961-b7a6-01d7f69b56dd.war
                15:36:49,537 INFO  [org.jboss.weld.Version] (MSC service thread 1-3) WELD-000900 1.1.10 (Final)
                15:36:49,568 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 13) JBAS011402: Starting Persistence Unit Service 'd213333c-878e-4961-b7a6-01d7f69b56dd.war#archetypeTestPU'
                15:36:49,570 INFO  [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016008: Starting weld service for deployment d213333c-878e-4961-b7a6-01d7f69b56dd.war
                15:36:49,657 INFO  [org.hibernate.annotations.common.Version] (ServerService Thread Pool -- 13) HCANN000001: Hibernate Commons Annotations {4.0.1.Final}
                15:36:49,661 INFO  [org.hibernate.Version] (ServerService Thread Pool -- 13) HHH000412: Hibernate Core {4.2.0.CR1}
                15:36:49,663 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 13) HHH000206: hibernate.properties not found
                15:36:49,664 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 13) HHH000021: Bytecode provider name : javassist
                15:36:49,676 INFO  [org.hibernate.ejb.Ejb3Configuration] (ServerService Thread Pool -- 13) HHH000204: Processing PersistenceUnitInfo [
                        name: archetypeTestPU
                        ...]
                15:36:49,859 INFO  [org.hibernate.service.jdbc.connections.internal.ConnectionProviderInitiator] (ServerService Thread Pool -- 13) HHH000130: Instantiating explicit connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
                15:36:50,011 INFO  [org.hibernate.dialect.Dialect] (ServerService Thread Pool -- 13) HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
                15:36:50,014 WARN  [org.hibernate.dialect.H2Dialect] (ServerService Thread Pool -- 13) HHH000431: Unable to determine H2 database version, certain features may not work
                15:36:50,016 INFO  [org.hibernate.engine.jdbc.internal.LobCreatorBuilder] (ServerService Thread Pool -- 13) HHH000423: Disabling contextual LOB creation as JDBC driver reported JDBC version [3] less than 4
                15:36:50,024 INFO  [org.hibernate.engine.transaction.internal.TransactionFactoryInitiator] (ServerService Thread Pool -- 13) HHH000268: Transaction strategy: org.hibernate.engine.transaction.internal.jta.CMTTransactionFactory
                15:36:50,026 INFO  [org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory] (ServerService Thread Pool -- 13) HHH000397: Using ASTQueryTranslatorFactory
                15:36:50,053 INFO  [org.hibernate.validator.internal.util.Version] (ServerService Thread Pool -- 13) HV000001: Hibernate Validator 4.3.1.Final
                15:36:50,296 INFO  [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) HHH000227: Running hbm2ddl schema export
                15:36:50,300 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: alter table group__role_ drop constraint FKD1FA7B6A2C069FB3
                15:36:50,309 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) HHH000389: Unsuccessful: alter table group__role_ drop constraint FKD1FA7B6A2C069FB3
                15:36:50,309 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) Table "GROUP__ROLE_" not found; SQL statement:
                alter table group__role_ drop constraint FKD1FA7B6A2C069FB3 [42102-168]
                15:36:50,309 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: alter table group__role_ drop constraint FKD1FA7B6AE6C56885
                15:36:50,309 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) HHH000389: Unsuccessful: alter table group__role_ drop constraint FKD1FA7B6AE6C56885
                15:36:50,309 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) Table "GROUP__ROLE_" not found; SQL statement:
                alter table group__role_ drop constraint FKD1FA7B6AE6C56885 [42102-168]
                15:36:50,310 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: alter table user__group_ drop constraint FKB29D6E6BE6C56885
                15:36:50,310 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) HHH000389: Unsuccessful: alter table user__group_ drop constraint FKB29D6E6BE6C56885
                15:36:50,310 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) Table "USER__GROUP_" not found; SQL statement:
                alter table user__group_ drop constraint FKB29D6E6BE6C56885 [42102-168]
                15:36:50,310 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: alter table user__group_ drop constraint FKB29D6E6B2C09C3DD
                15:36:50,310 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) HHH000389: Unsuccessful: alter table user__group_ drop constraint FKB29D6E6B2C09C3DD
                15:36:50,311 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) Table "USER__GROUP_" not found; SQL statement:
                alter table user__group_ drop constraint FKB29D6E6B2C09C3DD [42102-168]
                15:36:50,311 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: drop table group_ if exists
                15:36:50,311 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: drop table group__role_ if exists
                15:36:50,311 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: drop table role_ if exists
                15:36:50,312 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: drop table user_ if exists
                15:36:50,312 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: drop table user__group_ if exists
                15:36:50,312 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: drop sequence hibernate_sequence
                15:36:50,312 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) HHH000389: Unsuccessful: drop sequence hibernate_sequence
                15:36:50,313 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:
                drop sequence hibernate_sequence [90036-168]
                15:36:50,313 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: create table group_ (id bigint not null, createDate timestamp, updateDate timestamp, version integer, name varchar(255), primary key (id))
                15:36:50,313 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: create table group__role_ (groups_id bigint not null, roles_id bigint not null, primary key (groups_id, roles_id))
                15:36:50,314 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: create table role_ (id bigint not null, createDate timestamp, updateDate timestamp, version integer, name varchar(255), primary key (id))
                15:36:50,314 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: create table user_ (id bigint not null, createDate timestamp, updateDate timestamp, version integer, name varchar(255) not null, password varchar(255) not null, primary key (id))
                15:36:50,315 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: create table user__group_ (users_id bigint not null, groups_id bigint not null)
                15:36:50,315 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: alter table group__role_ add constraint FKD1FA7B6A2C069FB3 foreign key (roles_id) references role_
                15:36:50,320 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: alter table group__role_ add constraint FKD1FA7B6AE6C56885 foreign key (groups_id) references group_
                15:36:50,322 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: alter table user__group_ add constraint FKB29D6E6BE6C56885 foreign key (groups_id) references group_
                15:36:50,323 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: alter table user__group_ add constraint FKB29D6E6B2C09C3DD foreign key (users_id) references user_
                15:36:50,324 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: create sequence hibernate_sequence start with 1 increment by 1
                15:36:50,325 INFO  [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 13) HHH000230: Schema export complete
                15:36:50,523 INFO  [org.apache.myfaces.extensions.cdi.core.api.provider.ServiceProvider] (MSC service thread 1-7) org.apache.myfaces.extensions.cdi.core.impl.provider.DefaultServiceProvider installed successfully.
                15:36:50,523 INFO  [org.apache.myfaces.extensions.cdi.core.api.provider.ServiceProvider] (MSC service thread 1-7) org.apache.myfaces.extensions.cdi.core.impl.provider.DefaultServiceProviderContext installed successfully.
                15:36:50,548 INFO  [org.apache.myfaces.extensions.cdi.core.impl.projectstage.ProjectStageProducer] (MSC service thread 1-7) Computed the following CODI ProjectStage: Production
                15:36:51,768 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: delete from group__role_
                15:36:52,157 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: delete from user__group_
                15:36:52,158 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: delete from role_
                15:36:52,159 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: delete from group_
                15:36:52,160 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: delete from user_
                15:36:52,163 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: call next value for hibernate_sequence
                15:36:52,179 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: call next value for hibernate_sequence
                15:36:52,182 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: call next value for hibernate_sequence
                15:36:52,203 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: insert into user_ (createDate, updateDate, version, name, password, id) values (?, ?, ?, ?, ?, ?)
                15:36:52,209 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: insert into user_ (createDate, updateDate, version, name, password, id) values (?, ?, ?, ?, ?, ?)
                15:36:52,210 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: insert into group_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
                15:36:52,211 INFO  [stdout] (ServerService Thread Pool -- 13) Hibernate: insert into user__group_ (users_id, groups_id) values (?, ?)
                15:36:52,218 INFO  [org.jboss.web] (ServerService Thread Pool -- 13) JBAS018210: Register web context: /d213333c-878e-4961-b7a6-01d7f69b56dd
                15:36:52,262 INFO  [javax.enterprise.resource.webcontainer.jsf.config] (ServerService Thread Pool -- 13) Inicializando Mojarra 2.1.18-jbossorg-1 20130205-1414 para o contexto '/d213333c-878e-4961-b7a6-01d7f69b56dd'
                15:36:52,983 INFO  [org.conventionsframework.system.VersionSystemEventListener] (ServerService Thread Pool -- 13) Running Conventions 1.1.1
                15:36:52,985 INFO  [org.primefaces.webapp.PostConstructApplicationEventListener] (ServerService Thread Pool -- 13) Running on PrimeFaces 4.0
                15:36:53,001 INFO  [ConventionsFilter] (ServerService Thread Pool -- 13) initializing conventions filter
                15:36:53,149 INFO  [org.jboss.as.server] (management-handler-thread - 2) JBAS018559: Deployed "d213333c-878e-4961-b7a6-01d7f69b56dd.war" (runtime-name : "d213333c-878e-4961-b7a6-01d7f69b56dd.war")
                15:36:53,980 INFO  [org.jboss.resteasy.cdi.CdiInjectorFactory] (http-localhost/127.0.0.1:8080-1) Found BeanManager at java:comp/BeanManager
                15:36:54,071 INFO  [org.jboss.resteasy.spi.ResteasyDeployment] (http-localhost/127.0.0.1:8080-1) Deploying javax.ws.rs.core.Application: class org.conventions.archetype.rest.ApplicationRest$Proxy$_$$_WeldClientProxy
                15:36:54,115 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-1) logged in:false
                15:36:54,459 INFO  [stdout] (http-localhost/127.0.0.1:8080-1) Hibernate: select this_.id as id3_0_, this_.createDate as createDate3_0_, this_.updateDate as updateDate3_0_, this_.version as version3_0_, this_.name as name3_0_, this_.password as password3_0_ from
                user_ this_
                15:36:54,587 INFO  [stdout] (http-localhost/127.0.0.1:8080-1) Hibernate: select groups0_.users_id as users1_3_1_, groups0_.groups_id as groups2_4_1_, group1_.id as id0_0_, group1_.createDate as createDate0_0_, group1_.updateDate as updateDate0_0_, group1_.versi
                on as version0_0_, group1_.name as name0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
                15:36:54,596 INFO  [stdout] (http-localhost/127.0.0.1:8080-1) Hibernate: select roles0_.groups_id as groups1_0_1_, roles0_.roles_id as roles2_1_1_, role1_.id as id2_0_, role1_.createDate as createDate2_0_, role1_.updateDate as updateDate2_0_, role1_.version as
                version2_0_, role1_.name as name2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
                15:36:54,602 INFO  [stdout] (http-localhost/127.0.0.1:8080-1) Hibernate: select groups0_.users_id as users1_3_1_, groups0_.groups_id as groups2_4_1_, group1_.id as id0_0_, group1_.createDate as createDate0_0_, group1_.updateDate as updateDate0_0_, group1_.versi
                on as version0_0_, group1_.name as name0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
                15:36:54,737 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-2) logged in:false
                15:36:54,775 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: select count(this_.id) as y0_ from user_ this_ where lower(this_.name) like ?
                15:36:54,782 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) adminHibernate: call next value for hibernate_sequence
                15:36:54,784 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: call next value for hibernate_sequence
                15:36:54,785 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: call next value for hibernate_sequence
                15:36:54,786 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: call next value for hibernate_sequence
                15:36:54,787 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: call next value for hibernate_sequence
                15:36:54,789 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into user_ (createDate, updateDate, version, name, password, id) values (?, ?, ?, ?, ?, ?)
                15:36:54,790 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into group_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
                15:36:54,791 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into role_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
                15:36:54,792 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into group_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
                15:36:54,793 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into role_ (createDate, updateDate, version, name, id) values (?, ?, ?, ?, ?)
                15:36:54,794 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into user__group_ (users_id, groups_id) values (?, ?)
                15:36:54,795 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into user__group_ (users_id, groups_id) values (?, ?)
                15:36:54,796 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into group__role_ (groups_id, roles_id) values (?, ?)
                15:36:54,797 INFO  [stdout] (http-localhost/127.0.0.1:8080-2) Hibernate: insert into group__role_ (groups_id, roles_id) values (?, ?)
                15:36:54,834 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-3) logged in:false
                15:36:54,840 INFO  [stdout] (http-localhost/127.0.0.1:8080-3) Hibernate: select count(this_.id) as y0_ from user_ this_ where lower(this_.name) like ?
                15:36:54,842 INFO  [stdout] (http-localhost/127.0.0.1:8080-3) adminHibernate: call next value for hibernate_sequence
                15:36:54,843 INFO  [stdout] (http-localhost/127.0.0.1:8080-3) Hibernate: insert into user_ (createDate, updateDate, version, name, password, id) values (?, ?, ?, ?, ?, ?)
                15:36:54,880 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-4) logged in:false
                15:36:54,885 INFO  [stdout] (http-localhost/127.0.0.1:8080-4) Hibernate: select this_.id as id3_0_, this_.createDate as createDate3_0_, this_.updateDate as updateDate3_0_, this_.version as version3_0_, this_.name as name3_0_, this_.password as password3_0_ from
                user_ this_ where (lower(this_.name) like ?)
                15:36:54,887 INFO  [stdout] (http-localhost/127.0.0.1:8080-4) Hibernate: select groups0_.users_id as users1_3_1_, groups0_.groups_id as groups2_4_1_, group1_.id as id0_0_, group1_.createDate as createDate0_0_, group1_.updateDate as updateDate0_0_, group1_.versi
                on as version0_0_, group1_.name as name0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
                15:36:54,891 INFO  [stdout] (http-localhost/127.0.0.1:8080-4) Hibernate: select roles0_.groups_id as groups1_0_1_, roles0_.roles_id as roles2_1_1_, role1_.id as id2_0_, role1_.createDate as createDate2_0_, role1_.updateDate as updateDate2_0_, role1_.version as
                version2_0_, role1_.name as name2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
                15:36:54,930 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-5) logged in:false
                15:36:54,935 INFO  [stdout] (http-localhost/127.0.0.1:8080-5) Hibernate: select this_.id as id3_0_, this_.createDate as createDate3_0_, this_.updateDate as updateDate3_0_, this_.version as version3_0_, this_.name as name3_0_, this_.password as password3_0_ from
                user_ this_ where (lower(this_.name) like ?)
                15:36:54,937 INFO  [stdout] (http-localhost/127.0.0.1:8080-5) Hibernate: select groups0_.users_id as users1_3_1_, groups0_.groups_id as groups2_4_1_, group1_.id as id0_0_, group1_.createDate as createDate0_0_, group1_.updateDate as updateDate0_0_, group1_.versi
                on as version0_0_, group1_.name as name0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
                15:36:54,938 INFO  [stdout] (http-localhost/127.0.0.1:8080-5) Hibernate: select roles0_.groups_id as groups1_0_1_, roles0_.roles_id as roles2_1_1_, role1_.id as id2_0_, role1_.createDate as createDate2_0_, role1_.updateDate as updateDate2_0_, role1_.version as
                version2_0_, role1_.name as name2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
                15:36:54,941 INFO  [stdout] (http-localhost/127.0.0.1:8080-5) Hibernate: select roles0_.groups_id as groups1_0_1_, roles0_.roles_id as roles2_1_1_, role1_.id as id2_0_, role1_.createDate as createDate2_0_, role1_.updateDate as updateDate2_0_, role1_.version as
                version2_0_, role1_.name as name2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
                15:36:54,955 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-6) logged in:false
                15:36:54,958 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-6) logged in:false
                15:36:54,960 INFO  [stdout] (http-localhost/127.0.0.1:8080-6) adminHibernate: select user0_.id as id3_0_, group2_.id as id0_1_, user0_.createDate as createDate3_0_, user0_.updateDate as updateDate3_0_, user0_.version as version3_0_, user0_.name as name3_0_, use
                r0_.password as password3_0_, group2_.createDate as createDate0_1_, group2_.updateDate as updateDate0_1_, group2_.version as version0_1_, group2_.name as name0_1_, groups1_.users_id as users1_3_0__, groups1_.groups_id as groups2_4_0__ from user_ user0_ left out
                er join user__group_ groups1_ on user0_.id=groups1_.users_id left outer join group_ group2_ on groups1_.groups_id=group2_.id where user0_.name=? and user0_.password=?
                15:36:54,965 INFO  [stdout] (http-localhost/127.0.0.1:8080-6) Hibernate: select roles0_.groups_id as groups1_0_1_, roles0_.roles_id as roles2_1_1_, role1_.id as id2_0_, role1_.createDate as createDate2_0_, role1_.updateDate as updateDate2_0_, role1_.version as
                version2_0_, role1_.name as name2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
                15:36:54,966 INFO  [stdout] (http-localhost/127.0.0.1:8080-6) Hibernate: select roles0_.groups_id as groups1_0_1_, roles0_.roles_id as roles2_1_1_, role1_.id as id2_0_, role1_.createDate as createDate2_0_, role1_.updateDate as updateDate2_0_, role1_.version as
                version2_0_, role1_.name as name2_0_ from group__role_ roles0_ inner join role_ role1_ on roles0_.roles_id=role1_.id where roles0_.groups_id=?
                15:36:54,970 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-6) logged in:true
                15:36:54,971 INFO  [stdout] (http-localhost/127.0.0.1:8080-6) Hibernate: select user0_.id as id3_0_, user0_.createDate as createDate3_0_, user0_.updateDate as updateDate3_0_, user0_.version as version3_0_, user0_.name as name3_0_, user0_.password as password3_0
                _ from user_ user0_ where user0_.id=?
                15:36:54,973 INFO  [stdout] (http-localhost/127.0.0.1:8080-6) Hibernate: select groups0_.users_id as users1_3_1_, groups0_.groups_id as groups2_4_1_, group1_.id as id0_0_, group1_.createDate as createDate0_0_, group1_.updateDate as updateDate0_0_, group1_.versi
                on as version0_0_, group1_.name as name0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
                15:36:55,011 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-6) logged in:false
                15:36:55,014 INFO  [stdout] (http-localhost/127.0.0.1:8080-6) Hibernate: select this_.id as id3_0_, this_.createDate as createDate3_0_, this_.updateDate as updateDate3_0_, this_.version as version3_0_, this_.name as name3_0_, this_.password as password3_0_ from
                user_ this_ where (lower(this_.name) like ?)
                15:36:55,016 INFO  [stdout] (http-localhost/127.0.0.1:8080-6) Hibernate: select groups0_.users_id as users1_3_1_, groups0_.groups_id as groups2_4_1_, group1_.id as id0_0_, group1_.createDate as createDate0_0_, group1_.updateDate as updateDate0_0_, group1_.versi
                on as version0_0_, group1_.name as name0_0_ from user__group_ groups0_ inner join group_ group1_ on groups0_.groups_id=group1_.id where groups0_.users_id=?
                15:36:55,028 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-7) logged in:false
                15:36:55,032 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-7) logged in:false
                15:36:55,033 INFO  [stdout] (http-localhost/127.0.0.1:8080-7) adminHibernate: select user0_.id as id3_0_, group2_.id as id0_1_, user0_.createDate as createDate3_0_, user0_.updateDate as updateDate3_0_, user0_.version as version3_0_, user0_.name as name3_0_, use
                r0_.password as password3_0_, group2_.createDate as createDate0_1_, group2_.updateDate as updateDate0_1_, group2_.version as version0_1_, group2_.name as name0_1_, groups1_.users_id as users1_3_0__, groups1_.groups_id as groups2_4_0__ from user_ user0_ left out
                er join user__group_ groups1_ on user0_.id=groups1_.users_id left outer join group_ group2_ on groups1_.groups_id=group2_.id where user0_.name=? and user0_.password=?
                15:36:55,035 INFO  [SecurityContextImpl] (http-localhost/127.0.0.1:8080-7) logged in:true
                15:36:55,053 INFO  [org.jboss.web] (ServerService Thread Pool -- 13) JBAS018224: Unregister web context: /d213333c-878e-4961-b7a6-01d7f69b56dd
                15:36:55,065 INFO  [org.jboss.weld.deployer] (MSC service thread 1-6) JBAS016009: Stopping weld service for deployment d213333c-878e-4961-b7a6-01d7f69b56dd.war
                15:36:55,066 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 17) JBAS011403: Stopping Persistence Unit Service 'd213333c-878e-4961-b7a6-01d7f69b56dd.war#archetypeTestPU'
                15:36:55,079 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-6) JBAS010409: Unbound data source [java:jboss/datasources/ExampleDS2]
                15:36:55,125 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) JBAS015877: Stopped deployment d213333c-878e-4961-b7a6-01d7f69b56dd.war (runtime-name: d213333c-878e-4961-b7a6-01d7f69b56dd.war) in 77ms
                15:36:55,223 INFO  [org.jboss.as.repository] (management-handler-thread - 3) JBAS014901: Content removed from location C:\projetos\archetype\target\jboss-as-7.2.0.Final\standalone\data\content\4c\41975f3225a2af06e8d5826e9f8972ef7633ee\content
                15:36:55,224 INFO  [org.jboss.as.server] (management-handler-thread - 3) JBAS018558: Undeployed "d213333c-878e-4961-b7a6-01d7f69b56dd.war" (runtime-name: "d213333c-878e-4961-b7a6-01d7f69b56dd.war")
                Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 21.274 sec - in org.conventions.archetype.test.rest.UserRestIt
                Running org.conventions.archetype.test.it.HelloArquillianIt
                
                
                
                • 5. Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
                  kwintesencja

                  Hi again,

                   

                  i didnt got it working yet but eliminated Drone from the issue, removed everithing from pom and code related to functional tests and it hangs on undeploy phase:

                   

                  10:55:11,582 INFO  [org.jboss.as] (Controller Boot Thread) JBAS015874: WildFly 8.0.0.Final "WildFly" started in 3374ms - Started 183 of 232 services (80 services are lazy, passive or

                  on-demand)

                                          (E) AfterStart

                  (E) BeforeClass

                          (I) TestContextHandler.createSuiteContext

                          (I) TestContextHandler.createClassContext

                          (E) TestClass

                          (O) ContainerRestarter.restart

                          (O) ContainerEventController.execute

                          (E) ContainerMultiControlEvent

                                  (O) ContainerLifecycleController.startClassContainers

                          (E) Event

                                  (O) DeploymentGenerator.generateDeployment

                                  (E) DeploymentScenario

                          (E) ContainerMultiControlEvent

                                  (O) ContainerDeployController.deployManaged

                                  (E) DeployDeployment

                                          (I) DeploymentExceptionHandler.verifyExpectedExceptionDuringDeploy

                                          (I) ContainerDeploymentContextHandler.createContainerContext

                                          (I) ContainerDeploymentContextHandler.createDeploymentContext

                                          (O) ContainerDeployController.deploy

                                          (E) DeploymentDescription

                                          (E) Deployment

                                          (E) BeforeDeploy

                                                  (O) ServerSetupObserver.handleBeforeDeployment

                                                  (O) ArquillianServiceDeployer.doServiceDeploy

                                                  (O) ArchiveDeploymentToolingExporter.export

                                                  (O) ArchiveDeploymentExporter.callback

                                          (E) DeploymentException

                                          (E) DeploymentException

                                  (E) DeploymentException

                                  (E) DeploymentException

                          (E) DeploymentException

                          (E) DeploymentException

                  (E) AfterClass

                          (I) TestContextHandler.createSuiteContext

                          (I) TestContextHandler.createClassContext

                          (E) TestClass

                          (O) ClientBeforeAfterLifecycleEventExecuter.on

                          (O) ServerSetupObserver.afterTestClass

                          (O) ContainerEventController.execute

                          (E) ContainerMultiControlEvent

                                  (O) ContainerDeployController.undeployManaged

                                  (E) UnDeployDeployment

                                          (I) ContainerDeploymentContextHandler.createContainerContext

                                          (I) ContainerDeploymentContextHandler.createDeploymentContext

                                          (O) ContainerDeployController.undeploy

                                          (E) BeforeUnDeploy

                   

                   

                  after it freezes i have to halt the execution(^ c) and kill the java process(probably jacoco jvm)...still investigating this issue

                  • 6. Re: Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
                    kwintesencja

                    just isolate the issue, as soon i add a lib to the deployment, it hangs:

                     

                    just comment //LIBS below and it will just run.   

                     

                      @Deployment
                        public static WebArchive createDeployment() {
                            WebArchive war = ShrinkWrap.create(WebArchive.class);
                          // war.addPackages(true, "org.conventions.archetype.model");//entities
                        //  war.addClasses(RoleService.class, RoleServiceImpl.class) //we will test RoleService
                            //.addClasses(UserService.class, UserServiceImpl.class)//used by SecurityInterceptorImpl.java
                            //war.addPackages(true, "org.conventions.archetype.qualifier")//@ListToUpdate, @see roleServiceImpl
                            ;
                          // war.addPackages(true, "org.conventions.archetype.security");//security interceptor @see beans.xml
                            //war.addPackages(true, "org.conventions.archetype.event");//UpdateListEvent @seeGroupServiceImpl#afterStore
                          // war.addPackages(true, "org.conventions.archetype.util");
                    
                    
                            //LIBS
                            MavenResolverSystem resolver = Maven.resolver();
                            war.addAsLibraries(resolver.loadPomFromFile("pom.xml").resolve("org.conventionsframework:conventions-core:1.1.1").withTransitivity().asFile());//conventions
                            war.addAsLibraries(resolver.loadPomFromFile("pom.xml").resolve("org.primefaces:primefaces:4.0").withoutTransitivity().asSingleFile());
                    
                            //WEB-INF
                            war.addAsWebInfResource(new File(WEB_INF,"beans.xml"), "beans.xml");
                            war.addAsWebInfResource(new File(WEB_INF,"web.xml"), "web.xml");
                            war.addAsWebInfResource(new File(WEB_INF,"faces-config.xml"), "faces-config.xml");
                    
                            war.addAsWebInfResource("jbossas-ds.xml", "jbossas-ds.xml");//datasource
                    
                            //resources
                          // war.addAsResource("test-persistence.xml", "META-INF/persistence.xml");
                    
                            return war;
                        }             
                    
                    

                     

                     

                    i've removed every test(there is only one test) and extensions from project and pushed it here: rmpestano/arquillian-jacoco-issue · GitHub

                     

                    the command i'm using is mvn clean test -Pwildfly-managed -Pjacoco -Darquillian.debug=true

                    • 7. Re: Re: Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
                      kpiwko

                      Rafael, it looks like there are credentials required to access Maven Repositories you define in tests:

                       

                      Downloading: http://arquillian-jbehave-repo.googlecode.com/git/com/googlecode/jboss-as-dist/7.2.0.Final/jboss-as-dist-7.2.0.Final.zip
                      Downloading: http://jboss-as-dist.googlecode.com/git/com/googlecode/jboss-as-dist/7.2.0.Final/jboss-as-dist-7.2.0.Final.zip
                      Downloading: http://repository.primefaces.org/com/googlecode/jboss-as-dist/7.2.0.Final/jboss-as-dist-7.2.0.Final.zip
                      Downloading: https://oss.sonatype.org/content/repositories/snapshots/com/googlecode/jboss-as-dist/7.2.0.Final/jboss-as-dist-7.2.0.Final.zip
                      Downloading: http://repo.maven.apache.org/maven2/com/googlecode/jboss-as-dist/7.2.0.Final/jboss-as-dist-7.2.0.Final.zip
                      [INFO] ------------------------------------------------------------------------
                      [INFO] BUILD FAILURE
                      [INFO] ------------------------------------------------------------------------
                      [INFO] Total time: 4:37.306s
                      [INFO] Finished at: Mon Jun 02 10:18:10 CEST 2014
                      [INFO] Final Memory: 40M/127M
                      [INFO] ------------------------------------------------------------------------
                      [ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:unpack (unpack) on project archetype: Unable to resolve artifact. Could not transfer artifact com.googlecode:jboss-as-dist:zip:7.2.0.Final from/to Jboss AS dist UNofficial maven repo (http://jboss-as-dist.googlecode.com/git/): Access denied to: http://jboss-as-dist.googlecode.com/git/com/googlecode/jboss-as-dist/7.2.0.Final/jboss-as-dist-7.2.0.Final.zip , ReasonPhrase:Forbidden.
                      [ERROR] com.googlecode:jboss-as-dist:zip:7.2.0.Final
                      

                       

                      I've tried to run tests with wildfly-managed profile, I've hit the same issue. I suspect this happens due to fact that jacoco modifies streams that server is using to get content of the archive and it deadlocks.

                      Can you try to define exclusions in jacoco to disable instrumentation of classes in jars fetched by SWR?

                       

                      It might help,

                       

                      Karel

                      • 8. Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
                        kwintesencja

                        Hi Karel, thanks for the hints, will try it later.

                         

                        about the maven issue it looks like google is blocking access from some countries but the dependency should be available here: http://jboss-as-dist.googlecode.com/git/com/googlecode/jboss-as-dist/7.2.0.Final/jboss-as-dist-7.2.0.Final.zip, anyway its just a jbossas 7.2.0 zip distribution.

                        • 9. Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
                          aslak

                          It doesn't actually hang on Drone, rather Drone was just the last 'sub' event that was called.

                           

                          The actual hang is waiting for WildFly to return from Undeploy. Not 100% sure why it never gets a response here, but..

                           

                          The root cause of the issue actually happens before it does any deploy at all, during the export of the archive. Jacoco fail to instrument the classes due to incompatible v. of org.objectweb.asm. Jacoco require Asm 5, while glassfish-embedded-all bundles an older v.

                           

                          See the following pull request for proposed fix. Only tested with the wildfly-remote profile.

                          Replace glassfish-embedded-all with spec libraries by aslakknutsen · Pull Request #1 · conventions/archetype · GitHub

                          • 10. Re: Arquillian Jacoco hangs on DroneLifecycleManager.beforeUndeploy
                            kwintesencja

                            great! it was glassfish-embedded-all.

                             

                            thanks one more time Aslak, keep the great work!