I wanna exclude the source files from being bundled with .class files in a 
subproject's jar.I tried the following in the sub-project's project.xml file.
 
<build>
        
<sourceDirectory>${basedir}/../Support/ejbModule/net/msl/support/busobject</sourceDirectory>
        <resources>
      <resource>
        <directory>${basedir}/../Support/target/classes</directory>
        <includes>
          <include>*.xml</include>
          <include>*.xmi</include>
          <include>*.sql</include>
          <include>*.dbxmi</include>
          <include>*.tblxmi</include>
          <include>*.ddl</include>
        </includes>
        <excludes>
           <exclude>**/*.java</exclude>
        </excludes>
      </resource>
    </resources>
</build>
 
but my jar still includes .java files.
 
jeff mutonho
 
 
 
 

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Reply via email to