compose-lobsters/build.gradle.kts

23 lines
668 B
Plaintext

/*
* Copyright © 2021-2023 Harsh Shandilya.
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
import dev.iurysouza.modulegraph.Orientation
import dev.iurysouza.modulegraph.Theme
plugins {
id("dev.msfjarvis.claw.spotless")
id("dev.msfjarvis.claw.versions")
id("dev.msfjarvis.claw.kotlin-common")
alias(libs.plugins.modulegraph)
}
moduleGraphConfig {
heading.set("## Module dependency graph")
orientation.set(Orientation.TOP_TO_BOTTOM)
readmePath.set(project.layout.projectDirectory.file("README.md").asFile.absolutePath)
theme.set(Theme.DARK)
}