Javadoc overview.html file location

Running NetBeans on MS/Windows. I would like to check in the entire NB project via cvs and include the Javadoc overview.html in the package.

However the person who checks it out can put their project pretty much anywhere they want. Unless I'm way wide of the mark it appears that the Javadoc overview.html file has to be given an absolute path. Is there any way to specify it relative to the installation or where the command is running. I've tried a variety of things but currently my NB project.properties line is:

javadoc.additionalparam=-overview C:/javaDocFiles/overview.html

I would like to replace the "C:/javaDocFiles" with a relative path or a symbolic parameter which would be correct where ever one checked out the project and move overview.html into the project hierarchy.

Thanks.

[825 byte] By [OldAndTireda] at [2007-10-3 0:41:39]
# 1
This worked:javadoc.additionalparam=-overview "${basedir}/web/doc/overview.html"The quotes are necessary because the path has spaces in it.
OldAndTireda at 2007-7-14 17:35:56 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Good.The doc says:-overview...The path/filename is relative to the -sourcepath. http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javadoc.html#overview
dhkramera at 2007-7-14 17:35:56 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...