We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 196d36d commit 6ad34fdCopy full SHA for 6ad34fd
build.gradle.kts
@@ -1,5 +1,4 @@
1
import io.gitlab.arturbosch.detekt.Detekt
2
-import org.jetbrains.changelog.date
3
import org.jetbrains.changelog.markdownToHTML
4
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
5
@@ -96,12 +95,14 @@ tasks {
96
95
)
97
98
// Get the latest available change notes from the changelog file
99
- changeNotes.set(provider {
100
- File("./CHANGELOG.md")
101
- .readText().lines()
102
- .joinToString("\n")
103
- .run { markdownToHTML(this) }
104
- })
+ changeNotes.set(
+ provider {
+ File("./CHANGELOG.md")
+ .readText().lines()
+ .joinToString("\n")
+ .run { markdownToHTML(this) }
+ }
105
+ )
106
}
107
108
runPluginVerifier {
0 commit comments