Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for C4_1_Context (0.27 sec)

  1. platforms/core-configuration/kotlin-dsl/doc/c4/images/C4_1_Context.svg

    C4_1_Context.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/C4_1_Context.puml

    Iurii Ignatko <******@****.***> 1700156790 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 846 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/doc/c4/build.gradle.kts

    plugins {
        id("org.fmiw.plantuml") version "0.1"
    }
    
    defaultTasks = listOf("generateDiagrams")
    
    plantuml {
        options {
            outputDir = file("images")
        }
        diagrams {
            for (diagram in listOf("C4_1_Context", "C4_2_Container", "C4_3_Component")) {
                register(diagram) {
                    sourceFile = file("$diagram.puml")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 380 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    The Kotlin DSL is embedded into the Gradle Build Tool and, just like the IDE, makes use of the Kotlin toolchain.
    Both the Kotlin DSL and the Kotlin toolchain leverage the Gradle Build Cache.
    
    image::images/C4_1_Context.svg[]
    
    ## Level 2: Container diagram
    
    When used for the compilation of scripts of a Gradle build, the Kotlin DSL Provider compiles scripts using an embedded Kotlin compiler.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top