help插件的describe目标:http://maven.apache.org/plugins/maven-help-plugin/: mvn help:describe -Dplugin=pl.project13.maven:git-commit-id-plugin:2.2.5 -Ddetail 或者直接查看官方文档:https://github.com/git-commit-id/maven-git-commit-id-plugin/blob/master/docs/using-the-plugin.md 这个插件一共...
<maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>4.0.5</version> <executions> <execution>...
git-commit-id maven-plugin 是一个比较有意思的插件,可以提供一些git 详细相关的元数据信息到jar 包中,这样有利于我们分析 业务问题(里边包含了git commitid,分支,提交人,提交日志等信息),以下是一个简单试用 项目准备 一个多模块项目 父pom.xml <?xmlversion="1.0"encoding="UTF-8"?> <projectxmlns="http:...
https://repo.huaweicloud.com/repository/maven/pl/project13/maven/git-commit-id-plugin/4.9.10/ 这样打包后,解压jar包。BOOT-INF\classes 下会有个文件git.properties 记录提交信息。 git.commit.id就是提交id。 注:使用该工具,注意先提交再打包,这样版本才一致。 git.properties 例子 #Generated by Git-Co...
git-commit-id-maven-plugingit-commit-id-maven-pluginPublic Maven plugin which includes build-time git repository information into an POJO / *.properties). Make your apps tell you which version exactly they were built from! Priceless in large distributed de… ...
maven git commit id plugin git-commit-id-plugin is a plugin quite similar to https://fisheye.codehaus.org/browse/mojo/tags/buildnumber-maven-plugin-1.0-beta-4 for example but as buildnumber at the time when I started this plugin only supported CVS and SVN, something had to be done. I ha...
笔者甚至在github上找到了这样一个demomygitcommitidplanet思路是: 1)把maven-git-commit-id-plugin运行所产生的git.properties文件的内容修改为json形式。 2)通过“/version” 的接口对外提供查询服务。 后续,甚至都可以通过这个接口来检查线上系统的版本和cmdb中版本的一致性,或者做系统的健康性巡检(ping)。果然只有...
该文件可以在Maven打包(package)过程中被包含到 jar 包内。 为了方便获取信息,我们可以开放一个接口来呈现此信息文件中的内容。如,一个 HTTP API。 配置git-commit-id-plugin 在工程的 POM 文件中添加对此插件的引用,并添加一些自定义的配置。 (通常是在程序入口所在 jar包 的 POM 中配置。) ...
mygitcommitidplanet 思路是: 1)把maven-git-commit-id-plugin运行所产生的git.properties文件的内容修改为json形式。 2)通过“/version” 的接口对外提供查询服务。 后续,甚至都可以通过这个接口来检查线上系统的版本和cmdb中版本的一致性,或者做系统的健康性巡检(ping)。果然只有想不到,没有做不到。 接口示例:...
% java -jar target/git-commit-id-plugin-maven-1.0-SNAPSHOT.jar Maven Git Commit ID Example ...