<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">As I already commented on the JIRA issue,&nbsp;this approach just won't fly in the long run.<div>Imagine every similar sub-system as OSGi that would need to be excluded all over the place.</div><div><br></div><div>I'm also not saying this should be done immediately,</div><div>but I hope you have a long term vision where this kind of approach won't be needed.</div><div>Imo, this is what OSGi EE should be all about, to be able to run side-by-side,&nbsp;properly integrated, not explicitly excluded.</div><div><div><br><div><div>On Mar 16, 2011, at 10:11 AM, Thomas Diesler wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">
<div bgcolor="#ffffff" text="#000000">
    <div class="moz-text-flowed" style="font-family: -moz-fixed;
      font-size: 12px;" lang="x-western">Folks,
      <br>
      <br>
      an OSGi bundle deployment is fundamentally different from an EE
      deployment and must be handled by the OSGi subsystem. DUPs that
      are not targeted for OSGi bundle deployments must ignore these.
      Currently the recommended approach to ignore an OSGi deployment in
      a DUP is
      <br>
      <br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DeploymentUnit deploymentUnit =
      phaseContext.getDeploymentUnit();
      <br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
      if(deploymentUnit.hasAttachment(Attachments.OSGI_MANIFEST)) {
      <br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;
      <br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
      <br>
      <br>
      If you work on some other type of marker attachment, make sure
      that this marker is not attached for an OSGi deployment. For the
      above check to work, the OSGi manifest processor must come early
      in the chain. I changed the order of structure processors to
      <br>
      <br>
      &nbsp;&nbsp;&nbsp; // STRUCTURE
      <br>
      &nbsp;&nbsp;&nbsp; public static final int
      STRUCTURE_MOUNT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 0x0000;
      <br>
      &nbsp;&nbsp;&nbsp; public static final int
      STRUCTURE_MANIFEST&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 0x0100;
      <br>
      &nbsp;&nbsp;&nbsp; public static final int
      STRUCTURE_OSGI_MANIFEST&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 0x0200;
      <br>
      &nbsp;&nbsp;&nbsp; public static final int
      STRUCTURE_RAR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = 0x0300;
      <br>
      &nbsp;&nbsp;&nbsp; ...
      <br>
      <br>
      This relates to a bug related to WAB (Webapp Bundle) deployments
      <br>
      <a class="moz-txt-link-freetext" href="https://issues.jboss.org/browse/JBAS-8940">https://issues.jboss.org/browse/JBAS-8940</a>
      <br>
      <br>
      cheers
      <br>
      -thomas
      <br>
      <br>
      <br>
      <div class="moz-txt-sig"><span class="moz-txt-tag">--&nbsp;<br>
        </span>xxxxxxxxxxxxxxxxxxxxxxxxxxxx
        <br>
        Thomas Diesler
        <br>
        JBoss OSGi Lead
        <br>
        JBoss, a division of Red Hat
        <br>
        xxxxxxxxxxxxxxxxxxxxxxxxxxxx
      </div>
    </div>
    <br>
  </div>

_______________________________________________<br>jboss-as7-dev mailing list<br><a href="mailto:jboss-as7-dev@lists.jboss.org">jboss-as7-dev@lists.jboss.org</a><br>https://lists.jboss.org/mailman/listinfo/jboss-as7-dev<br></blockquote></div><br></div></div></body></html>