Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 11th, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Can Ant property files define inheritance?
  2. base.properties:
  3. prop1=base
  4.  
  5. child.properties (inherit from base.properties):
  6. prop1=child // this should override prop1 in base.properties
  7.        
  8. <property file="${user.home}/${product}/${product.version}/build.properties"/>
  9. <property file="${user.home}/${product}/build.properties"/>
  10. <property file="${user.home}/build.properties"/>
  11. <property file="build.properties"/>