"[EMAIL PROTECTED]" wrote : I have checked in j2ee/jbossbuild.xml.  It produces 
all three artifacts of j2ee and integrates into the top level build.  However, 
I have a couple of issues.
  | 
  | 1.  j2ee includes some classes from jmx.  For now, I access using a 
relative path which is what the existing build path essentially does.  Not sure 
if we want to formalize this into an artifact.
  | 

It is one of the issues on my list to sort out the javax.management classes.
My current plan is to include them in a j2se module rather than j2ee.

anonymous wrote : 
  | 2.  I had to explicitly reference the libs that I needed from jboss-common. 
 When I tried to do:
  | 
  |   |       <source id="main">
  |   |          <include input="common"/> 
  |   |          <include input="servlet"/>
  |   |          <include input="jaf"/>
  |   |       </source>
  |   | 
  | ... the path was resolved to common/output.  So instead I had to include 
the jars explicitly.
  | 
  |   |       <source id="main">
  |   |          <include input="jboss-common.jar"/>
  |   |          <include input="namespace.jar"/>
  |   |          <include input="servlet"/>
  |   |          <include input="jaf"/>
  |   |       </source>
  |   | 
  | 
  | I shouldn't have to reference the jars for a local component any 
differently than for a non-local one, no?

The difference between servlet and jboss-common.jar is that an includes
element has been created in the top level build for convenience:


  |       <includes id="servlet">
  |          <include input="servlet-api.jar"/>
  |          <include input="jsp-api.jar"/>
  |       </includes>
  | 

The same code be done for common


  |    <includes id="jboss-common">
  |         <include input="jboss-common.jar"/>
  |         <include input="namespace.jar"/>
  |    </includes>
  | 

This is similar to the way we have libraries.ent and modules.ent with the 
current build.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862972#3862972

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862972


-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to