buildnumber-maven-plugin为scmBranch返回UNKNOWN [英] The buildnumber-maven-plugin is returning UNKNOWN for the scmBranch

查看:461
本文介绍了buildnumber-maven-plugin为scmBranch返回UNKNOWN的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

buildnumber-maven-plugin能够从git获取版本号,并根据提供的微不足道的文档,它应该在 $ {scmBranch} 属性中提供分支。但是,我得到的所有 UNKNOWN 都是 $ {scmBranch} 属性。

The buildnumber-maven-plugin is able to get the revision number from git and according to the meager documentation provided it should be providing the branch as well in the ${scmBranch} property. However, all I get is UNKNOWN for the ${scmBranch} property.

有什么我需要做的从buildnumber-maven-plugin获取分支信息吗?

Is there something else I need to do to get the branch info from buildnumber-maven-plugin?

以下是我的pom.xml中的相关条目:

Here are the relevant entries from my pom.xml:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>buildnumber-maven-plugin</artifactId>
    <version>1.2</version>
    <executions>
        <execution>
            <phase>validate</phase>
            <goals>
                <goal>create</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <doCheck>true</doCheck>
        <doUpdate>true</doUpdate>
    </configuration>
</plugin>

<manifestEntries>
    <Build-Branch>${scmBranch}</Build-Branch>
    <Build-Revision>${buildNumber}</Build-Revision>
    <Build-Timestamp>${maven.build.timestamp}</Build-Timestamp>
</manifestEntries>


推荐答案

简短回答buildnumber插件1.2 不打印git分支,所以请查看 jgit-buildnumber maven-git-commit-id 插件。

Short answer the buildnumber plugin 1.2 doesn't print git branches, so check out the jgit-buildnumber or maven-git-commit-id plugins.

无论你如何配置它,你都不会从buildnumber插件1.2中获得一个分支,因为它只是寻找 SVN分支信息

No matter how much you configure it, you're not going to get a branch out of the buildnumber plugin 1.2, because it's only looking for SVN branch information.

取而代之的是大量的通信ity贡献 git插件的maven

Instead there are a large number of community contributed git plugins for maven.

下面是一个使用所有三个插件实例的pom示例,您可以通过 mvn -f test.xml validate 快速尝试:

Here is an example pom that uses an instance of all three plugins, that you can quickly try out via mvn -f test.xml validate:

<?xml version="1.0" encoding="UTF-8"?>
<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>my.test</groupId>
    <artifactId>git-branch-info</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <scm>
        <connection>scm:git:ssh://path_not_used_in_buildnumber_example/but_scm_type_is</connection>
    </scm>

    <build>
        <plugins>

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>buildnumber-maven-plugin</artifactId>
                <version>1.2</version>
                <executions>
                    <execution>
                        <phase>validate</phase>
                        <goals>
                            <goal>create</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>ru.concerteza.buildnumber</groupId>
                <artifactId>maven-jgit-buildnumber-plugin</artifactId>
                <version>1.2.7</version>
                <executions>
                    <execution>
                        <id>jgit-buildnumber</id>
                        <goals>
                            <goal>extract-buildnumber</goal>
                        </goals>
                        <phase>validate</phase>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>pl.project13.maven</groupId>
                <artifactId>git-commit-id-plugin</artifactId>
                <version>2.1.9</version>
                <executions>
                    <execution>
                        <id>git-commit-id</id>
                        <goals>
                            <goal>revision</goal>
                        </goals>
                        <phase>validate</phase>
                        <configuration>
                            <!-- Only changing prefix since properties conflicts with jgit above -->
                            <prefix>git-commit-id</prefix>
                            <!-- We're using a pom in this example-->
                            <skipPoms>false</skipPoms>
                            <gitDescribe>
                                <!-- Faster to get just branch if skip = true -->
                                <skip>false</skip>
                            </gitDescribe>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <id>echo-properties</id>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <phase>validate</phase>
                        <configuration>
                            <target>
                                <echo message="buildnumber-maven-plugin properties:"/>
                                <echo message="  $${scmBranch}:                  ${scmBranch}" />
                                <echo message="  $${buildNumber}:                ${buildNumber}" />
                                <echo message="  $${timestamp}:                  ${timestamp}" />

                                <echo message="maven-jgit-buildnumber-plugin properties:"/>
                                <echo message="  $${git.revision}:               ${git.revision}" />
                                <echo message="  $${git.branch}:                 ${git.branch}" />
                                <echo message="  $${git.tag}:                    ${git.tag}" />
                                <echo message="  $${git.commitsCount}:           ${git.commitsCount}" />
                                <echo message="  $${git.buildnumber}:            ${git.buildnumber}" />


                                <echo message="git-commit-id-plugin properties (aliased with git-commit-id):"/>
                                <echo message="  $${git.branch}:                 ${git-commit-id.branch}" />

                                <echo message="  $${git.commit.id.describe}:     ${git-commit-id.commit.id.describe}" />

                                <echo message="  $${git.build.user.name}:        ${git-commit-id.build.user.name}" />
                                <echo message="  $${git.build.user.email}:       ${git-commit-id.build.user.email}" />
                                <echo message="  $${git.build.time}:             ${git-commit-id.build.time}" />

                                <echo message="  $${git.commit.id}:              ${git-commit-id.commit.id}" />
                                <echo message="  $${git.commit.id.abbrev}:       ${git-commit-id.commit.id.abbrev}" />
                                <echo message="  $${git.commit.user.name}:       ${git-commit-id.commit.user.name}" />
                                <echo message="  $${git.commit.user.email}:      ${git-commit-id.commit.user.email}" />
                                <echo message="  $${git.commit.message.full}:    ${git-commit-id.commit.message.full}" />
                                <echo message="  $${git.commit.message.short}:   ${git-commit-id.commit.message.short}" />
                                <echo message="  $${git.commit.time}:            ${git-commit-id.commit.time}" />
                            </target>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

        </plugins>
    </build>

</project>

这篇关于buildnumber-maven-plugin为scmBranch返回UNKNOWN的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆