我正在努力学习maven ASAP作为我目前工作场所的必要条件。我找到了this伟大的书,几乎解释了关于maven的一切。
我正在使用eclipse进行java开发并且我安装了maven eclipse插件,在我上面提到的书中有例子(可能相关或不相关) 4.2.1。雅虎天气RSS 。
此示例的目的是通过连接到yahoo weather rss服务器并从中获取适当的数据来说明maven如何以稍微复杂的方式工作。
我努力奋斗的是下面的这一行,我设法从cmd执行它(我正在使用win-7)
mvn exec:java -Dexec.mainClass=org.sonatype.mavenbook.weather.Main
当我使用文本编辑器和cmd时,首先编辑文件,然后再使用maven执行命令我做了所有事情,就像在书中一切都运行完美,但我们使用eclipse所以我想学习如何做同样的事情与日食。
我如何从日食中做到这一点?
以下是我尝试运行的图片:
alt text http://postavi.com/hosted/bc0de2440ba2b5017a92672c721dcca1.gif
所以我进入下一个屏幕:
alt text http://postavi.com/hosted/5c79320f64e850879d49823c4a6e2ecb.gif
我运行它并收到此错误:
Version: 1.1.1
Mojo: exec
brought in via: Direct invocation
While building project:
Group-Id: org.sonatype.mavenbook.custom
Artifact-Id: weather
Version: 0.0.1-SNAPSHOT
From file: C:\OPR-CS\weather\pom.xml
Missing parameters include:
executable
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run with the -e flag
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILED
[INFO] ------------------------------------------------------------------------
[INFO] Total time: < 1 second
[INFO] Finished at: Tue Feb 02 14:47:04 CET 2010
[INFO] Final Memory: 1M/7M
[INFO] ------------------------------------------------------------------------
我认为我没有通过上面错误所述的相应参数。
-Dexec.mainClass=org.sonatype.mavenbook.weather.Main
以上这一行。因为我不知道怎么做。这是pom.xml文件,与本书略有调整的书相同,是:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.sonatype.mavenbook.custom</groupId>
<artifactId>weather</artifactId>
<packaging>jar</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>weather</name>
<url>http://maven.apache.org</url>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<organization>
<name>ORIGIGI</name>
<url>http://www.devs.com</url>
</organization>
<developers>
<developer>
<id>emco</id>
<name>Myself and I</name>
<email>devs@devs.com</email>
<url>http://www.devs.com</url>
<organization>ORIGIGI</organization>
<organizationUrl>http://www.devs.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>-6</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
任何人都可以帮助我吗?谢谢
答案 0 :(得分:3)
您正在调用exec:exec
而不是exec:java
。
目标部分应为exec:java
,并且在JRE标签和-Dexec.mainClass=...
参数中。