2012-10-30 91 views
1

在运行mvn install glassfish:deploy我碰到以下问题的maven-与GlassFish插件在Maven的3.0.4

[...] 
[ERROR] Failed to execute goal org.glassfish.maven.plugin:maven-glassfish-plugin:2.1:deploy (default-cli) on project post-build-pom: Execution default-cli of goal org.glassfish.maven.plugin:maven-glassfish-plugin:2.1:deploy failed: Plugin o rg.glassfish.maven.plugin:maven-glassfish-plugin:2.1 or one of its dependencies could not be resolved: Failed to collect dependencies for org.glassfish.maven.plugin:maven-glassfish-plugin:jar:2.1(): Failed to read artifact descriptor for org.apache.maven:maven-plugin-api:jar:3.0-SONATYPE-688946: Failure to find org.apache.maven:maven-parent:pom:9-SNAPSHOT in http://maven-repository/content/groups/public was cached in the local repository, resolution will not be reattempted until the update interval of internal-repository has elapsed or updates are forced -> [Help 1] 
[...] 

mvn -v看起来是这样的:

Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100) Maven home: C:\Users\rob\apache-maven-3.0.4\bin\.. Java version: 1.6.0_37, vendor: Sun Microsystems Inc. Java home: C:\Programme\Java\jdk1.6.0_37\jre Default locale: de_DE, platform encoding: Cp1252 OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows"

Futhermore我的Nexus-库在http://maven-repository上运行。

编辑:插件部分从pom.xml的是这样的:

<plugin> 
    <groupId>org.glassfish.maven.plugin</groupId> 
    <artifactId>maven-glassfish-plugin</artifactId> 
    <version>2.1</version> 
    <configuration> 
     <user>admin</user> 
     <adminPassword>adminadmin</adminPassword> 
     <glassfishDirectory>c:\development\glassfish-v2.1.1-b31g</glassfishDirectory> 
    </configuration> 
</plugin> 
+1

您可以发布post-build-pom.pom吗? –

回答

2

你不在面临的问题有唯一一个:)

似乎是官方的,甚至错误报告那么:http://java.net/jira/browse/GLASSFISH-14411

作为这里建议的解决方法:http://jira.codehaus.org/browse/MNG-4843 你应该用正确的版本覆盖项目中的插件依赖项。

以下应该解决您的问题:

<build> 
    <plugins> 
     <plugin> 
      <groupId>org.glassfish.maven.plugin</groupId> 
      <artifactId>maven-glassfish-plugin</artifactId> 
      <version>2.1</version> 
      <configuration> 
       <user>admin</user> 
       <adminPassword>adminadmin</adminPassword> 
       <glassfishDirectory>c:\development\glassfish-v2.1.1-b31g</glassfishDirectory> 
      </configuration> 
     </plugin> 
    </plugins> 
</build> 
<dependencies> 
    <dependency> 
     <groupId>org.apache.maven</groupId> 
     <artifactId>maven-project</artifactId> 
     <version>3.0-alpha-2</version> 
     <scope>provided</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.apache.maven</groupId> 
     <artifactId>maven-plugin-api</artifactId> 
     <version>3.0.4</version> 
     <scope>provided</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.apache.maven</groupId> 
     <artifactId>maven-artifact</artifactId> 
     <version>3.0.4</version> 
     <scope>provided</scope> 
    </dependency> 
</dependencies> 

当然,你需要提供所需的全部配置,但它是通过覆盖另一个话题:http://maven-glassfish-plugin.java.net/examples/complete.html

+2

只为其他人可能不会找到这个地方,我添加了解决方法,以正式的错误报告以及:) –

+1

嗨,彼得,非常感谢您的答案。我借助所提供的信息重新配置了我的项目,现在它就可以工作了。 – Rob

2

我找到另一种方式来解决这个问题:

  1. 复制文件“C:\ Users \ <当前用户> \。m2 \ repository \ org \ apache \ maven \ maven-parent \ 11 \ maven-parent-11.pom” 到 “C:\用户\ <当前用户> \平方米\库\组织\阿帕奇\行家\行家父\ 11-SNAPSHOT \”

  2. 和重命名为“行家父-11- SNAPSHOT.pom“

+0

有趣的方法;将尽快进行测试。 – Rob

+0

没有为我工作。 – tomas789