서브 모듈이 있을 경우 최상위 베이스 디렉토리를 프라퍼티로 지정할 필요가 생길 수가 있다. 베이스 디렉토리를 기준의 상대 경로에 있는 파일을 다뤄야 할 경우 등. 참조
In the parent: <properties> <main.basedir>${project.basedir}</main.basedir> </properties> In the children: <properties> <main.basedir>${project.parent.basedir}</main.basedir> </properties> In the grandchildren: <properties> <main.basedir>${project.parent.parent.basedir}</main.basedir> </properties>