缺少github maven插件工件

时间:2013-03-22 18:44:04

标签: maven github maven-3 maven-plugin

工具:

  

Apache Maven 3.0.3(r1075438; 2011-02-28 12:31:09-0500)Maven home:   / usr / share / maven Java版本:1.6.0_43,供应商:Apple Inc. Java主页:   /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home   默认语言环境:en_US,平台编码:MacRoman OS名称:“mac os   x“,版本:”10.8.3“,arch:”x86_64“,family:”mac“

我按照documentation中的指定设置settings.xml和pom.xml,然后运行命令:

  

mvn clean install ghDownloads:upload

但引发了以下错误:

  

在当前项目中找不到前缀'ghDownloads'的插件   插件组......

之后我在公司的Nexus存储库中查找,但我找不到该工件。 ghDownloads所在的位置?

1 个答案:

答案 0 :(得分:0)

我只需将以下内容放在pom.xml中:

        <plugin>
            <groupId>com.github.github</groupId>
            <artifactId>downloads-maven-plugin</artifactId>
            <version>0.5</version>
            <configuration>
                <description>${project.version} release of ${project.name}</description>
                <override>true</override>
                <includeAttached>true</includeAttached>
            </configuration>
        </plugin>