Tomcat 7 - Maven 插件为什么不工作?
当尝试在tomcat中使用自动部署时,出现以下错误
项目 com.tradair.tnet:tnet:1.0-SNAPSHOT (c:\tradair\sources\java\pom.xml) 有 1 个错误
'依赖项.依赖项.版本' 为 org.apache.tomcat.maven:tomcat7-maven-plugin:jar 必须是有效的 版本但为“${mavenVersion}”。 @第229行,第16列
如何解决此 org.apache.tomcat.maven:tomcat7-maven-plugin:jar 问题?
When trying to use automatic deployment in tomcat, I get the following error
The project com.tradair.tnet:tnet:1.0-SNAPSHOT
(c:\tradair\sources\java\pom.xml) has 1 error
'dependencies.dependency.version' for
org.apache.tomcat.maven:tomcat7-maven-plugin:jar must be a valid
version but is '${mavenVersion}'. @ line 229, column 16
How do I fix this org.apache.tomcat.maven:tomcat7-maven-plugin:jar
issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Maven 告诉您
version
部分丢失。您想使用哪个版本的插件?指定它。像这样的东西:Maven is telling your that the
version
part is missing. What version of the plugin do you wish to use? Specify it. Something like:我猜您已经声明了插件依赖项,如下所示:
您是否为属性 mavenVersion 设置了值?
I'm guessing you've declared your plugin dependency as follows:
Have you set a value for the property mavenVersion?