1 Reply Latest reply on Oct 8, 2013 5:28 AM by rhanus

    I try to migrate Jboss AS 5 to Jboss AS 7, here is the question

    leechen

      is it possible to add dependencies module each other? like A.jar depends on B.jar, B.jar depends on A.jar, here is the xml file:

       

      <?xml version="1.0" encoding="UTF-8"?>

      <jboss-deployment-structure>

      <ear-subdeployments-isolated>false</ear-subdeployments-isolated>

      <sub-deployment name="A.jar">

      <dependencies>

      <module name="deployment.ABC.ear.B.jar" />

      </dependencies>

      </sub-deployment>

      <sub-deployment name="B.jar">

      <dependencies>

      <module name="deployment.ABC.ear.A.jar" />

      </dependencies>

      </sub-deployment>

      </jboss-deployment-structure>

       

      thanks