我是第一次在竹子上设置 jgitflow 发布任务。我们在父 pom 中定义了 nexus url 和下面的 jgitflow 配置,用于从它继承的项目,如下所示
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>1.0-m5.1</version>
<configuration>
<scmCommentPrefix>[RELEASE] </scmCommentPrefix>
<pushReleases>true</pushReleases>
<pushFeatures>true</pushFeatures>
<pushHotfixes>true</pushHotfixes>
<noFeatureBuild>true</noFeatureBuild>
<noReleaseBuild>true</noReleaseBuild>
<noHotfixBuild>true</noHotfixBuild>
<keepBranch>false</keepBranch>
<autoVersionSubmodules>true</autoVersionSubmodules>
<allowUntracked>true</allowUntracked>
<pullDevelop>true</pullDevelop>
<pullMaster>true</pullMaster>
<allowSnapshots>true</allowSnapshots>
</configuration>
</plugin>
虽然在我运行 jgitflow:release-finish 时创建和更新了开发和主版本 gs/标签,但构建的工件没有被推送到配置的 nexus 服务器中。谁能告诉我是否缺少某种竹子,或者 jgitflow 配置是否有问题?