tomcat 使用子 war 项目部署插件
tomcat deploy plugin with child war projects
我的主项目有 3 个 war 模块我需要使用 tomcat-maven-plugin
部署主 war 文件
Parent
- Main War Project child of Parent(Has dependecy of 3 war modules)
- war module child of parent
- war module child of parent
- war module child of parent
如果我在父项目中添加插件,每个 war 模块都可以部署,这不是必需的
但是我只需要在主war项目war的maven-war-插件执行"Webapp assembled"时部署
我将插件添加到主 war 项目 pom,但它不起作用。并给出
No plugin found for prefix 'tomcat7' in the current project and in the
plugin groups
我添加了
tomcat7-plugin
在主 War 项目中,在部署时使用生命周期配置我已将目标添加到 运行
tomcat7:deploy
它工作正常。
我的主项目有 3 个 war 模块我需要使用 tomcat-maven-plugin
部署主 war 文件Parent
- Main War Project child of Parent(Has dependecy of 3 war modules)
- war module child of parent
- war module child of parent
- war module child of parent
如果我在父项目中添加插件,每个 war 模块都可以部署,这不是必需的
但是我只需要在主war项目war的maven-war-插件执行"Webapp assembled"时部署
我将插件添加到主 war 项目 pom,但它不起作用。并给出
No plugin found for prefix 'tomcat7' in the current project and in the plugin groups
我添加了
tomcat7-plugin
在主 War 项目中,在部署时使用生命周期配置我已将目标添加到 运行
tomcat7:deploy
它工作正常。