Calling depends targets from parent build.xml inside includes xml

后端 未结 1 917
傲寒
傲寒 2021-01-16 11:31

Is it possible for xml files that are part of \'includes\' inside build.xml to have depends on targets from that build.xml (backwards dependency)? Or do I need to create a c

1条回答
  •  迷失自我
    2021-01-16 11:50

    This works for me: In the main project file the target default depends on a target from commontasks.xml which depends on a target from the main project file:

    
    
      
    
      
      
    
      
        initializing main
        
      
    

    
    
      
        hello from common tasks
        aValue: ${aValue}
      
    

    When I run the ant build, I get:

    initMain:
     [echo] initializing main
    common.hello:
     [echo] hello from common tasks
     [echo] aValue: MAIN
    default:
    BUILD SUCCESSFUL
    

    The dependency is target default depends on hello depends on initMain and hello can use properties defined in initMain.

    0 讨论(0)
提交回复
热议问题