读取git和commit number的最后一次提交

San*_*utt 12 git maven

在使用Git源代码的maven项目中,每当我使用maven编译构建时,是否有可能读取git和commit number的最后一次提交.

我想使用该提交号来找到最后一次提交.

eis*_*eis 11

这假设您要读取该信息,然后将其存储在属性文件中.基于https://github.com/ktoso/maven-git-commit-id-plugin#using-the-plugin:

pom.xml中:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <!-- snip other stuff... -->
    <build>
        <!-- GIT COMMIT ID PLUGIN CONFIGURATION -->
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/*.properties</include>
                </includes>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <groupId>pl.project13.maven</groupId>
                <artifactId>git-commit-id-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>revision</goal>
                         </goals>
                    </execution>
                </executions>

                <configuration>
                    <commitIdGenerationMode>flat</commitIdGenerationMode>
                    <gitDescribe>
                        <skip>true</skip>
                    </gitDescribe>
                </configuration>

            </plugin>
            <!-- END OF GIT COMMIT ID PLUGIN CONFIGURATION -->

            <!-- other plugins -->
        </plugins>
    </build>
</project>
Run Code Online (Sandbox Code Playgroud)

/ src/main/resources中的git.properties:

git.commit.id=${git.commit.id}
Run Code Online (Sandbox Code Playgroud)