Skip to content

Commit b9932b0

Browse files
committed
fix description metadata for gradle plugin
1 parent fb14c89 commit b9932b0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10-
## [14.0.0] - 2025-11-10
11-
1210
- Update build to work with gradle 9.1 and Java 25 [#962](https://github.com/JLLeitschuh/ktlint-gradle/pull/962)
1311
- Collapse sourcesets to simply build [#964](https://github.com/JLLeitschuh/ktlint-gradle/pull/964)
12+
- Fix Gradle plugin description [#999](https://github.com/JLLeitschuh/ktlint-gradle/pull/999)
1413

1514
## [13.1.0] - 2025-08-21
1615

plugin/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020

2121
val pluginGroup = "org.jlleitschuh.gradle"
2222
group = pluginGroup
23-
23+
description = "This plugin creates convenient tasks in your Gradle project that run ktlint checks or do code auto format."
2424
repositories {
2525
google()
2626
mavenCentral()
@@ -231,13 +231,13 @@ configurations.named("runtimeClasspath") {
231231
gradlePlugin {
232232
vcsUrl = "https://github.com/JLLeitschuh/ktlint-gradle"
233233
website = vcsUrl
234-
description = "Provides a convenient wrapper plugin over the ktlint project."
235234
(plugins) {
236235
register("ktlintPlugin") {
237236
id = "org.jlleitschuh.gradle.ktlint"
238237
implementationClass = "org.jlleitschuh.gradle.ktlint.KtlintPlugin"
239238
displayName = "Ktlint Gradle Plugin"
240239
tags = listOf("ktlint", "kotlin", "linting")
240+
description = project.description
241241
}
242242
}
243243
}

0 commit comments

Comments
 (0)