11 Replies Latest reply on Oct 9, 2013 2:19 PM by rzvikas

    Arquillian - Gradle - JBOSS 7.2.0.Final - Testing simple injection with lot of 3rd party jars

    rzvikas

      hi guys

       

      Has anyone tried testing simple Injection with Arquillian using Gradle. I want to test something which is dependent on lot of third party jars. Do I need to add all those jars as par of my @Deployment method

       

      ShrinkWrap.create(JavaArchive.class, "testjar")

                          .addPackages(true, "com.xyz") .

      addLibraries ....                 

                      .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");

       

       

      I am happy to use any other simple framework which can let me test my Injected beans

       

       

      Pls suggest