Skip to content

Commit 6ad34fd

Browse files
author
minh.tran
committed
fixup! fixup! sync with template v0.10.0
1 parent 196d36d commit 6ad34fd

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

build.gradle.kts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import io.gitlab.arturbosch.detekt.Detekt
2-
import org.jetbrains.changelog.date
32
import org.jetbrains.changelog.markdownToHTML
43
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
54

@@ -96,12 +95,14 @@ tasks {
9695
)
9796

9897
// 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-
})
98+
changeNotes.set(
99+
provider {
100+
File("./CHANGELOG.md")
101+
.readText().lines()
102+
.joinToString("\n")
103+
.run { markdownToHTML(this) }
104+
}
105+
)
105106
}
106107

107108
runPluginVerifier {

0 commit comments

Comments
 (0)