Maven没有执行我的Ant目标

Maven没有执行我的Ant目标,maven,ant,maven-antrun-plugin,flexmojos,Maven,Ant,Maven Antrun Plugin,Flexmojos,我正在尝试做一些非常简单的事情:从Maven运行一个Ant任务。万无一失,对吧?错 这是我的pom: <?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM

我正在尝试做一些非常简单的事情:从Maven运行一个Ant任务。万无一失,对吧?错

这是我的pom:

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 
        xmlns="http://maven.apache.org/POM/4.0.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>sampleproject-app</artifactId>
        <groupId>org.sampleproject</groupId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>

    <groupId>org.sampleproject</groupId>
    <artifactId>patient-labs-module</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>swf</packaging>
    <name>Sample Project Patient Labs Module</name>

    <properties>
        <flex.sdk.version>4.1.0.16248</flex.sdk.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.adobe.flex.framework</groupId>
            <artifactId>flex-framework</artifactId>
            <version>${flex.sdk.version}</version>
            <type>pom</type>
            <exclusions>
                <exclusion>
                    <groupId>com.adobe.flex.framework</groupId>
                    <artifactId>playerglobal</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.adobe.flexunit</groupId>
            <artifactId>flexunit</artifactId>
            <version>4.0-rc-1</version>
            <type>swc</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.adobe.flex.framework</groupId>
            <artifactId>playerglobal</artifactId>
            <version>${flex.sdk.version}</version>
            <classifier>10.1</classifier>
            <type>swc</type>
        </dependency>
    </dependencies>

    <build>
        <sourceDirectory>${basedir}/main/flex</sourceDirectory>
        <testSourceDirectory>${basedir}/test/flex</testSourceDirectory>

        <resources>
            <resource>
                <directory>${basedir}/main/resources</directory>
            </resource>
        </resources>

        <testResources>
            <testResource>
                <directory>${basedir}/test/resources</directory>
            </testResource>
        </testResources>

        <plugins>
            <plugin>
                <groupId>org.sonatype.flexmojos</groupId>
                <artifactId>flexmojos-maven-plugin</artifactId>
                <version>3.8</version>
                <extensions>true</extensions>
                <dependencies>
                    <dependency>
                        <groupId>com.adobe.flex</groupId>
                        <artifactId>compiler</artifactId>
                        <version>${flex.sdk.version}</version>
                        <type>pom</type>
                    </dependency>
                </dependencies>
                <configuration>
                    <sourceFile>application.mxml</sourceFile>
                    <targetPlayer>10.1</targetPlayer>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>install</phase>
                        <configuration>
                            <tasks>
                                <mkdir dir="/var/www/sampleproject/patientlabs"/>
                                <copy todir="/var/www/sampleproject/patientlabs">
                                    <fileset file="${project.build.directory}/${project.build.finalName}.${project.packaging}"/>
                                    <fileset dir="main/resources" includes="**/*"/>
                                </copy>
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

4.0.0
sampleproject应用程序
org.sampleproject
0.0.1-快照
org.sampleproject
病人实验室模块
0.0.1-快照
主权财富基金
样本项目患者实验室模块
4.1.0.16248
com.adobe.flex.framework
flex框架
${flex.sdk.version}
聚甲醛
com.adobe.flex.framework
玩家全球
com.adobe.flexunit
柔性单元
4.0-rc-1
swc
测试
com.adobe.flex.framework
玩家全球
${flex.sdk.version}
10.1
swc
${basedir}/main/flex
${basedir}/test/flex
${basedir}/main/resources
${basedir}/test/resources
org.sonatype.flexmojos
flexmojos maven插件
3.8
真的
com.adobe.flex
编译程序
${flex.sdk.version}
聚甲醛
application.mxml
10.1
maven antrun插件
安装
我做错了什么?当我运行
mvn install
时,Ant目标永远不会执行。有更好的方法吗?我只需要将资源目录和主swf中的某些文件复制到本地目录,以便在本地主机HTTP服务器上测试它

如果你查看maven antrun插件的站点,你会发现插件配置中也指定了一个目标

        <goals>
          <goal>run</goal>
        </goals>
我想你必须加上这个