Skip to content

Commit 0c12cee

Browse files
committed
prettify displayName, description, tags
1 parent 0b999ae commit 0c12cee

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

build.gradle

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,19 @@ gradlePlugin {
131131
plugins {
132132
gitCommitIdPlugin {
133133
id = "${group}.${rootProject.name}"
134-
displayName = "Plugin to make basic git repository information available in the gradle world."
135-
description = "A plugin that helps you to extract valuable information from your git repository that can be included in your final artifact for reproducability."
136-
tags.addAll("git", "gradle-plugin", "versioning")
134+
displayName = "Git Commit ID Gradle Plugin"
135+
description = "Capture comprehensive git repository metadata at build time -- commit ID, branch, tags, and more -- to embed in your artifacts for reproducibility and traceability."
136+
tags.addAll("git", "version", "versioning", "commit", "build-info", "metadata", "reproducibility")
137137
implementationClass = 'io.github.git.commit.id.gradle.plugin.GitCommitIdPlugin'
138+
139+
// https://github.com/gradle/gradle-plugin-compatibility-plugin/blob/main/README.md
140+
// requires publishing plugin v2.1.0+
141+
compatibility {
142+
features {
143+
// Declare the feature supported.
144+
configurationCache = true
145+
}
146+
}
138147
}
139148
}
140149
automatedPublishing = true

0 commit comments

Comments
 (0)