Skip to content

Commit

Permalink
fixup! fixup! sync with template v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
minh.tran committed May 28, 2021
1 parent 196d36d commit 6ad34fd
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import io.gitlab.arturbosch.detekt.Detekt
import org.jetbrains.changelog.date
import org.jetbrains.changelog.markdownToHTML
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

Expand Down Expand Up @@ -96,12 +95,14 @@ tasks {
)

// Get the latest available change notes from the changelog file
changeNotes.set(provider {
File("./CHANGELOG.md")
.readText().lines()
.joinToString("\n")
.run { markdownToHTML(this) }
})
changeNotes.set(
provider {
File("./CHANGELOG.md")
.readText().lines()
.joinToString("\n")
.run { markdownToHTML(this) }
}
)
}

runPluginVerifier {
Expand Down

0 comments on commit 6ad34fd

Please sign in to comment.