我可以执行带有Eclipse m2e UPDATE的Maven插件吗?

时间:2018-10-29 09:48:31

标签: java eclipse maven maven-plugin m2eclipse

我有一个Maven项目,当我右键单击-> Maven->更新项目...时,我想问Eclipse将依赖项jar复制到WEB-INF / lib。 通过使用以下插件,我可以复制jar进行mvn验证。但是我想要在执行Maven-> Update Project ... with m2e时执行此插件

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <version>3.1.1</version>
            <executions>
                <execution>
                    <phase>validate</phase>
                    <goals>
                        <goal>copy</goal>
                    </goals>
                    <configuration>
                        <artifactItems>
                            <artifactItem>
                                <groupId>com.test.repo</groupId>
                                <artifactId>myDependencyJar</artifactId>
                                <overWrite>true</overWrite>
                                <outputDirectory>${basedir}/WebContent/WEB-INF/lib</outputDirectory>
                            </artifactItem>
                        </artifactItems>
                        <outputDirectory>${basedir}/WebContent/WEB-INF/lib</outputDirectory>
                        <overWriteReleases>false</overWriteReleases>
                        <overWriteSnapshots>true</overWriteSnapshots>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

1 个答案:

答案 0 :(得分:0)

Maven->更新项目根本不执行Maven。它只是使用pom.xml文件中的数据更新Eclipse项目。因此,我要说不可能通过这种方式执行Maven插件。

有关“ Maven->更新” here的更多信息。