我正在尝试为我的项目制作一个部署后脚本,它将测试有效性。
现在,脚本已经制作完成,我正试图让它在所有子模块之后运行。我能想到的最简单的方法就是使用特定前缀调用 exec-maven-plugin。不过,我需要一个新前缀,因为我已经在其中一个子模块上运行了不同的 exec。
所以,我想把它称为: validate:exec
xml 的相关部分如下所示:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>validate.py</executable>
<goalPrefix>validate</goalPrefix>
<arguments>
<argument>${deploy.host.fe</argument>
<argument>${deploy.port.fe}/argument>
</arguments>
</configuration>
</plugin>
我把它放在我的插件管理或插件标签中(拼写正确),都没有帮助。当我尝试运行时:
mvn 验证:执行
我得到:在当前项目和插件组中找不到前缀“验证”的插件......
提前感谢您的帮助