https://issues.apache.org/bugzilla/show_bug.cgi?id=45739
--- Comment #2 from Stefan Bodewig <[EMAIL PROTECTED]> 2008-09-04 23:25:03 PST --- There are two different places where basedirs might get resolved. One is in Project#setBaseDir which may be invoked with "." if Project#getBasedir is called before the Project instance knows its basename. This would resolve relative to the current working directory and not the location of the build file. The other place is ProjectHelper2#onStartElement which is invoked while the build file gets parsed, this will resolve relative to the location of the build file. My guess is that something in your code invokes project.getBasedir() before the project's build file has been parsed. The most common reason for this is a BuildListener invoking getBaseDir in the buildStarted event which is fired before the build file gets parsed. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
