如果我定义了一个自定义包装(通过Maven插件中的components.xml
)以及该表单生命周期目标的自定义列表,则为
<phases>
<!--use the basic jar lifecycle bindings, add additional
executions in here if you want anything extra to be run-->
<process-resources>
org.apache.maven.plugins:maven-resources-plugin:resources
</process-resources>
...
</phases>
我可以为上述目标添加配置吗?我试图添加执行ID(带有@
),但是失败了。
目标:我试图区分两种不同的war
,它们都需要maven-war-plugin。我以为我定义了portlet-war
和webapp-war
包装。由于它们都继承同一个父pom,因此在调用war插件时,我需要一些方法来区分它们。