Maven:未在distributionManagement中的POM中指定存储库元素?


75

我正在尝试运行命令mvn release:perform,但出现此错误:

Failed to execute goal
org.apache.maven.plugins:maven-deploy-plugin:2.5:deploy
(default-deploy) on project git-demo:
Deployment failed: repository element
was not specified in the POM inside
distributionManagement element or in
-DaltDeploymentRepository=id::layout::url
parameter

这是我的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>com.sonatype.blog</groupId>
    <artifactId>git-demo</artifactId>
    <packaging>jar</packaging>
    <version>1.1-SNAPSHOT</version>
    <name>git-demo</name>
    <url>http://maven.apache.org</url>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <scm>
        <connection>scm:git:git@github.com:Christian-Achilli-KP/git-demo.git</connection>
        <url>scm:git:git@github.com:Christian-Achilli-KP/git-demo.git</url>
        <developerConnection>scm:git:git@github.com:Christian-Achilli-KP/git-demo.git</developerConnection>
    </scm>

    <distributionManagement>
        <!-- use the following if you're not using a snapshot version. -->
        <repository>
            <id>localSnap</id>
            <name>RepositoryProxyRel</name>
            <url>http://127.0.0.1:8080/nexus/content/repositories/releases/</url>
        </repository>
        <!-- use the following if you ARE using a snapshot version. -->
        <snapshotRepository>
            <id>MylocalSnap</id>
            <name>RepositoryProxySnap</name>
            <url>http://127.0.0.1:8080/nexus/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.1</version>
            </plugin>
        </plugins>
    </build>
</project>

其实我可以看到

资料库

内部的声明

分销管理

标签。

这是我的settings.xml

<settings>
    <servers>
        <server>
            <id>localSnap</id>
            <username>deployment</username>
            <password>****</password>
        </server>

        <server>
            <id>MylocalSnap</id>
            <username>deployment</username>
            <password>****</password>
        </server>

        <server>
            <id>myserver</id>
            <username>tomcat</username>
            <password>tomcat</password>
        </server>
    </servers>
    <mirrors>
        <mirror>
            <!--This sends everything else to /public -->
            <id>nexus</id>
            <mirrorOf>*</mirrorOf>
            <url>http://127.0.0.1:8080/nexus/content/groups/public/</url>
        </mirror>
    </mirrors>
    <profiles>
        <profile>
            <id>nexus</id>
            <properties>
                <project.build.sourceEncoding>MacRoman</project.build.sourceEncoding>
                <project.reporting.outputEncoding>MacRoman</project.reporting.outputEncoding>
            </properties>

            <!--Enable snapshots for the built in central repo to direct -->
            <!--all requests to nexus via the mirror -->
            <repositories>
                <repository>
                    <id>central</id>
                    <url>http://central</url>
                    <releases><enabled>true</enabled></releases>
                    <snapshots><enabled>true</enabled></snapshots>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <id>central</id>
                    <url>http://central</url>
                    <releases><enabled>true</enabled></releases>
                    <snapshots><enabled>true</enabled></snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>

    <activeProfiles>
        <activeProfile>nexus</activeProfile>
    </activeProfiles>

</settings>

有什么建议为什么会抱怨吗?


您是否曾致电mvn release:prepare?当然,有相同的ID将不再起作用。
khmarbaise

@khmarbaise是的,我确实打电话给mvn:release并更改了ID。我将更新与新的POM的问题
基督教Achilli

您是否添加了.gitignore来忽略目标文件夹?您可以将更新推送到我可以看看的github吗?
khmarbaise 2011年

@khmarbaise是的,目标文件夹被忽略。这是git:git://github.com/Christian-Achilli-KP/git-demo.git tks!
Christian Achilli,

我已经根据您在github中的内容设置了一个新项目,它可以完美运行github.com/khmarbaise/git-demo将maven-release-plugin更新为2.1,而不是使用这样的旧版本...
khmarbaise

Answers:


39

查看中的pom.xml文件target/checkout/。可能是,pom.xml您的主干或主分支中没有distributionManagement标签。


1
clean则重试固定这对我来说。
丹尼尔·卡普兰

10

我收到了相同的消息(“未在distributionManagement元素内的POM中指定存储库元素”)。我检查了/target/checkout/pom.xml,并根据另一个答案,它确实缺乏<distributionManagement>

原来,问题出<distributionManagement>在我的master分支的pom.xml中(使用git)缺少了。

清理后(mvn release:rollbackmvn cleanmvn release:cleangit tag -d v1.0.0)我跑mvn release再次和它的工作。


4

您还可以在命令行上覆盖部署存储库: -Darguments=-DaltDeploymentRepository=myreposid::default::http://my/url/releases


2

这两个仓库的ID都是localSnap; 那可能不是您想要的,并且可能会使Maven感到困惑。

如果不是那样:repositoryPOM中可能包含更多元素。搜索的输出mvn help:effective-pomrepository确保数量和地点他们的是你所期望的。


谢谢,我尝试了您的两个建议,但无法提出有效的解决方案。在有效的POM中,确实有另一个带有<repositories>标记的地方,但是它不包含与<distributionManagement>标记冲突的任何内容。这里有一个类似的问题stackoverflow.com/questions/4539917/repository-element,但我没有答案,它如何适合这个问题!
Christian Achilli,

1
这是多模块构建吗?如果是这样,请检查父POM和版本。也许您忘记了更新版本号,而一个模块仍在使用旧的父POM。
亚伦·迪古拉

1

对我来说,这就像我的工件缺少的版本“ 1.1-SNAPSHOT”一样简单

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.