简体   繁体   中英

Can I execute maven plugin whith Eclipse m2e UPDATE?

I have a maven project and I want to ask Eclipse to copy a dependency jar to WEB-INF/lib when I do right click -> Maven -> Update Project ...
By using the following plugin, I can copy the jar doing mvn validate. But what I want is executing this plugin when I do 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>

The Maven -> Update Project does not execute Maven at all. It just updates the Eclipse project with the data from the pom.xml file. So I would say it is not possible to execute a Maven plugin by that mean.

More on "Maven -> Update" here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM