我来自ANT背景和Maven的新手。
出于某种原因,我需要在maven尝试获取快照依赖项之前执行shell脚本。 所以我编写了以下插件配置,但我没有得到如何在解析依赖项任务之前调用它。
我正在使用Apache Maven 3.0.5
以下是我的pom.xml的一部分
<build>
<finalName>edte</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<phase>clean</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>Docs/ci/delete_snapshots.sh</executable>
<arguments>
<argument>${user.home}</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
感谢任何帮助。