- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for ArchitectureElement (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/Builders.kt
return id } } sealed class ArchitectureElement( val name: String, val id: ElementId ) : Serializable class Platform(name: String, id: ElementId, val uses: List<ElementId>, val children: List<ArchitectureModule>) : ArchitectureElement(name, id) class ArchitectureModule(name: String, id: ElementId) : ArchitectureElement(name, id) sealed class ArchitectureElementBuilder(Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 3K bytes - Click Count (0) -
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratorTask.kt
private val startDiagram = "```mermaid" private val endDiagram = "```" @get:OutputFile abstract val outputFile: RegularFileProperty @get:Input abstract val elements: ListProperty<ArchitectureElement> @TaskAction fun generate() { val markdownFile = outputFile.asFile.get() val head = if (markdownFile.exists()) { val content = markdownFile.readText().lines()Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 3.8K bytes - Click Count (0)