首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java相关 >

应用Maven 命令

2013-09-06 
使用Maven 命令C:\Documents and Settings\Administratormvn clean test[INFO] Scanning for projects...

使用Maven 命令

C:\Documents and Settings\Administrator>mvn clean test
[INFO] Scanning for projects...
[INFO] ------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------
[INFO] Total time: 0.312s
[INFO] Finished at: Tue Aug 20 13:59:00 CST 2013
[INFO] Final Memory: 1M/3M
[INFO] ------------------------------------
[ERROR] The goal you specified requires a project to execute but there is no POM
 in this directory (C:\Documents and Settings\Administrator). Please verify you
invoked Maven from the correct directory. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit
ch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MissingProject
Exception
C:\Documents and Settings\Administrator>


这个 Maven 的仓库 地址 已经修改,(C:\Documents and Settings\Administrator)  为什么还要 在这里找啊。
[解决办法]
1 mvn clean test 控制台执行命令的时候 当前的目录下面有pom.xml文件,比如说C:\Documents and Settings\Administrator
2 错误的详细内容请帖出来。

[解决办法]
引用:
现在 使用 eclipse 集成 Maven ,所以 可以 点击 项目右键,run as maven instance.
[code=text][INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for com.picc:mvn:jar:0.0.1-SNAPSHOT


[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ line 21, column 18
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO]                                                                         
[INFO] ------------------------------------
[INFO] Building com.picc.mvn 0.0.1-SNAPSHOT
[INFO] ------------------------------------
[INFO] 
....


You've encountered a compiler bug. It is not clear which bug it might be, but there is a good chance that it would be fixed by upgrading to a later version of the JDK.
你的jdk的版本可能太老了,版本是多少的?下载最新的jdk。


[解决办法]
引用:
按你说的,我更换了最新的JDK 1.7 的。不报 上边的问题了。现在又出这个问题 了。
[INFO] Scanning for projects...
[WARNING] 
[WARNING] Some problems were encountered while building the effective model for com.picc:mvn:jar:0.0.1-SNAPSHOT
[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-surefire-plugin is missing. @ line 21, column 18
[WARNING] 
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING] 
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING] 
[INFO]                                                                         


[INFO] ------------------------------------
[INFO] Building com.picc.mvn 0.0.1-SNAPSHOT
[INFO] ------------------------------------
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ mvn ---
[WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 0 resource
[INFO] 
[INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ mvn ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ mvn ---
[WARNING] Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] Copying 0 resource
[INFO] 
[INFO] --- maven-compiler-plugin:2.5.1:testCompile (default-testCompile) @ mvn ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ mvn ---
[INFO] Tests are skipped.
[INFO] 
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ mvn ---
[INFO] Downloading: http://mirrors.ibiblio.org/maven2/org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar
[INFO] ------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------
[INFO] Total time: 3:03.547s
[INFO] Finished at: Tue Aug 20 17:18:22 CST 2013
[INFO] Final Memory: 7M/19M
[INFO] ------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-jar-plugin:2.4:jar (default-jar) on project mvn: Execution default-jar of goal org.apache.maven.plugins:maven-jar-plugin:2.4:jar failed: Plugin org.apache.maven.plugins:maven-jar-plugin:2.4 or one of its dependencies could not be resolved: Could not transfer artifact org.codehaus.plexus:plexus-io:jar:2.0.2 from/to ibiblio (http://mirrors.ibiblio.org/maven2/): GET request of: org/codehaus/plexus/plexus-io/2.0.2/plexus-io-2.0.2.jar from ibiblio failed: Premature end of Content-Length delimited message body (expected: 58265; received: 43206 -> [Help 1]


[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginResolutionException



pom中dependency
org.codehaus.plexus:plexus-io:jar:2.0.2
不能在http://mirrors.ibiblio.org/maven2/这个网址下载。。
[解决办法]
引用:
那从哪个地址上下载啊。
    <mirror>
      <id>ibiblio</id>
      <mirrorOf>central</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://mirrors.ibiblio.org/maven2/</url>
    </mirror>



http://repo1.maven.org/maven2

热点排行