How can I exclude sources in a javac task in ant?

后端 未结 6 1058
予麋鹿
予麋鹿 2021-01-01 18:26

I have the following in my build.xml:


   
            


        
6条回答
  •  难免孤独
    2021-01-01 19:22

    From my experiments you should not include full path for file you want to exclude. This one doesn't work:

    
    (...>
       
    (...)
    
    

    but this one does:

    
    (...>
       
    (...)
    
    

提交回复
热议问题