File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ plugins {
2020
2121val pluginGroup = " org.jlleitschuh.gradle"
2222group = pluginGroup
23-
23+ description = " This plugin creates convenient tasks in your Gradle project that run ktlint checks or do code auto format. "
2424repositories {
2525 google()
2626 mavenCentral()
@@ -231,13 +231,13 @@ configurations.named("runtimeClasspath") {
231231gradlePlugin {
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}
You can’t perform that action at this time.
0 commit comments