Hello all, have sort of resolved the issue, but not quite
 
    Remember
   
                 test
          proj1          proj2  (build.xml in here)
            |              |
           com            com
            |              |
            a              c
            |              |
            b              d
            |              |
           callee.java   caller.java
 
    If classpath points to proj1, and I build caller.java from command line, all
    is fine as the javac compiler finds callee.java via classpath, and builds callee.class
    as needed
 
    From ANT this fails, even if I set classpath and srcdir correctly
 
    Ant works fine when I have the following, with srcdir set at proj2, but this is not what I want,
    I want the same behaviour as javac from the command line (above)
 
                             proj2 (build.xml here, only building caller.java)
             |
                     ____ com _____          
         |               |
         a               c
         |               |
         b               d
         |               |
     callee.java     caller.java
 
 
Can somebody help ??
 
cheers Michael Quinn
 

Reply via email to