Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for architectureDoc (0.21 seconds)

  1. architecture/platforms.md

    <!-- 
      -- Note: this file contains a generated diagram. Use `./gradlew :architectureDoc` to generate 
      -->
    
    # Gradle platform architecture
    
    Gradle is arranged into coarse-grained components called "architecture modules" and "platforms".
    See [ADR4](standards/0004-use-a-platform-architecture.md) for a definition of these terms.
    
    The diagram below shows the current set of architecture modules and platforms:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 5.4K bytes
    - Click Count (0)
  2. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild.architecture-docs.settings.gradle.kts

    import gradlebuild.ProjectStructure
    import gradlebuild.basics.ArchitectureDataType
    
    val structure = extensions.create<ProjectStructure>("projectStructure")
    
    gradle.rootProject {
        tasks.register("architectureDoc", GeneratorTask::class.java) {
            description = "Generates the architecture documentation"
            outputFile = layout.projectDirectory.file("architecture/platforms.md")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  3. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratorTask.kt

    import org.gradle.api.tasks.TaskAction
    import java.io.PrintWriter
    
    abstract class GeneratorTask : DefaultTask() {
        private val markerComment = "<!-- This diagram is generated. Use `./gradlew :architectureDoc` to update it -->"
        private val startDiagram = "```mermaid"
        private val endDiagram = "```"
    
        @get:OutputFile
        abstract val outputFile: RegularFileProperty
    
        @get:Input
    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)
Back to Top