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=13160>.
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=13160

samples/userguide/**/*.java are not built

           Summary: samples/userguide/**/*.java are not built
           Product: Axis
           Version: 1.0-rc2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Samples
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
                CC: [EMAIL PROTECTED]


The java files in samples/userguide/** are not built because of an error in 
samples/userguide/build.xml. 

It has the following fragment

  <javac srcdir="." >
    <include name="samples/userguide/**/*.java"/>

Obviously when building the samples, the current directory is already 
samples/userguide and you are not going to find samples/userguide under it. 
The build.xml must be changed to 

  <javac srcdir="${axis.home}" >
    <include name="samples/userguide/**/*.java"/>

Reply via email to