Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have my main build.xml which imports a common-build.xml from a shared directory. The common-build.xml imports a build.properties which is located in the same directory. At the moment I have to use a common.dir property which is set by the calling build.xml. If I just do

  <property file="build.properties"/>

Then it loads the build.properties relative to the "root" directory which is where build.xml is.

Can I do a relative load of build.properties from common-build.xml rather than build.xml?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can use relative path to refer location of property file.

Another related technique is to use dirname task from ant.

<project name="project tests" default="runtests" basedir=".">
<dirname property="some.basedir" file="${ant.file.project tests}"/>

The property "some.basedir" now refers to the build.xml file's directory.

Finally, you can always pass one property file on command line.

ant -propertyfile filepath

share|improve this answer
1  
Beautiful, thanks. – Mike Q Sep 7 '10 at 11:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.