antrun プラグインを使用して、maven マルチモジュール プロジェクトのファイルをコピーしようとしています。ファイルは親プロジェクトのルートにあります:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<inherited>false</inherited>
<executions>
<execution>
<inherited>false</inherited>
<id>copy</id>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target name="copy and rename file">
<copy file="${basedir}/portal-ext.properties" tofile="${liferay.auto.deploy.dir}/../portal-ext.properties" />
</target>
</configuration>
</execution>
</executions>
mvn antrun:run
親とすべてのモジュールで「Antターゲットが定義されていません-スキップされました」という問題を解決してこれを実行します。親でのみ実行する必要があり、<inherited>false</inherited>
役立つと思いましたが、そうではありません。しかし、なぜ「Ant ターゲットが定義されていません」なのですか?