Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
${basedir}私のpom.xmlで親ディレクトリを取得する方法はありますか? 現在、私は持っています
${basedir}
<earSourceDirectory>${basedir}/EAR/src/main/resources</earSourceDirectory>
しかし、リソースが別の Maven プロジェクトにあるため、basedir の親ディレクトリにアクセスする必要があります。
$ の親フォルダーを取得するにはどうすればよい{basedir}ですか?
{basedir}
子供の場合:
<properties> <main.basedir>${project.parent.basedir}</main.basedir> </properties>
孫では:
<properties> <main.basedir>${project.parent.parent.basedir}</main.basedir> </properties>