Eclipse中 maven 工程 pom 文件 <execution> 报错
Eclipse中 maven 工程 pom 文件 <execution> 报错
解决: 在<plugins> 外层 添加 <pluginManagement>
Eclipse中 maven 工程 pom 文件 <execution> 报错
解决: 在<plugins> 外层 添加 <pluginManagement>
- <pluginManagement>
- <plugins>
- ..........
- </plugins>
- </pluginManagement>
- <p style="margin-top: 0px; margin-bottom: 5px; padding-top: 0px; padding-bottom: 0px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 21px; color: rgb(73, 73, 73); font-family: simsun; font-size: 14px; background-color: rgb(252, 211, 221);">后记:</p><p style="margin-top: 0px; margin-bottom: 5px; padding-top: 0px; padding-bottom: 0px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 21px; color: rgb(73, 73, 73); font-family: simsun; font-size: 14px; background-color: rgb(252, 211, 221);">这样改之后,虽然pom中没有红叉的错误提示了,但是有些插件不能起作用了,比如jaxb2-<span style="word-wrap: normal; word-break: normal;">maven</span>-<span style="word-wrap: normal; word-break: normal;">plugin这个插件用于根据xml动态生成java类,加了pluginManagement后,该插件不起作用,找不到动态生成的类。</span></p><p style="margin-top: 0px; margin-bottom: 5px; padding-top: 0px; padding-bottom: 0px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 21px; color: rgb(73, 73, 73); font-family: simsun; font-size: 14px; background-color: rgb(252, 211, 221);"><span style="word-wrap: normal; word-break: normal;">
- </span></p><p style="margin-top: 0px; margin-bottom: 5px; padding-top: 0px; padding-bottom: 0px; border: 0px; list-style: none; word-wrap: normal; word-break: normal; line-height: 21px; color: rgb(73, 73, 73); font-family: simsun; font-size: 14px; background-color: rgb(252, 211, 221);">所以,最终忽略eclipse对pom的excusion的红叉错误提示,也能maven install成功。</p>