12

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 ターゲットが定義されていません」なのですか?

4

3 に答える 3

21
  <plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.7</version>
    <executions>
      <execution>
        <id>ant-execute</id>
        <configuration>
          <target>
          <echo message="plugin classpath:  " />
          </target>
        </configuration>
        <goals>
          <goal>run</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

コマンド: mvn antrun:run@ant-execute

于 2015-10-02T14:49:38.873 に答える