DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8591>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8591

Build problem - JARs contain package.html files

           Summary: Build problem - JARs contain package.html files
           Product: POI
           Version: unspecified
          Platform: All
        OS/Version: Other
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: POI Overall
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


The JARs created by the build process include the package.html files from the 
source.

The problem is in xbuild.xml in the JAR centipede.cents.jar.

The filesets look like this ...

      <fileset dir="${xlayout.build.classes.dir}">
        <include name="**"/>
      </fileset>

and the should look like this ...

      <fileset dir="${xlayout.build.classes.dir}">
        <include name="**"/>
        <exclude name="**/package.html"/>
     </fileset>

I think excluding only package.html is better than excluding *.html

The patch looks something like this

179a180
>         <exclude name="**/package.html"/>
196a198
>         <exclude name="**/package.html"/>
213a216
>         <exclude name="**/package.html"/>
230a234
>         <exclude name="**/package.html"/>

Reply via email to