我的第一个maven示例失败了(使用m2eclipse):'mainClass'丢失了

时间:2013-05-17 06:36:32

标签: java eclipse maven configuration m2eclipse

我正在尝试使用Eclipse + m2Eclipse插件来完成这个Maven by Example的工作。但是,我收到了这个错误

  

[错误]无法在项目simple-weather上执行目标org.codehaus.mojo:exec-maven-plugin:1.2.1:java(default-cli):目标org.codehaus.mojo的参数'mainClass' :exec-maven-plugin:1.2.1:java缺失或无效

但是我确实以这种方式指定了mainClass(下面的截图),在“个人档案”行中指定了mainClass。知道我为什么还有错吗?非常感谢。

enter image description here

1 个答案:

答案 0 :(得分:1)

如错误消息所示,您缺少参数mainClass

您已将参数放在Profiles部分,这是错误的地方。

按下Add...按钮,在框中添加参数和值,如下所示:

enter image description here

当您按Ok

时,它应如下所示

enter image description here