我是java的新手请帮我如何在eclipse JUNO中安装maven 2.2.1?
答案 0 :(得分:2)
转到此page(这是官方maven下载页面)。选择要安装的版本。安装它。如果您在C盘中使用Windows解压缩文件。然后转到系统属性 - >高级 - >环境变量,并在其中添加MAVEN_HOME变量,其路径类似于此D:\Java\apache-maven-3.0.4
,而不是将此%MAVEN_HOME%\bin;
添加到PATH变量中。这有助于在您的计算机上安装maven。然后如@ Joe2013 Go to Eclipse-->Help-->Eclipse Market Place
并写下 maven ,你就会成为海Maven Integration Plugin
。安装它,你用maven配置了eclipse)
<强>更新强> 对于你的第二个问题
可能是你忘了添加到你的pom.xml:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.maventest.App</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
答案 1 :(得分:1)
转到Eclipse - &gt;帮助 - &gt; Eclipse Market Place,您应该可以安装Maven