Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for mycopki (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    tasks.register<Copy>("myCopy")                              // <1>
    
    tasks.named<Copy>("myCopy") {                               // <2>
        from("resources")
        into("target")
        include("**/*.txt", "**/*.xml", "**/*.properties")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> Registers a new untyped task named `myTask1`
    <3> Gets a reference to the existing task named `compileJava` of type `JavaCompile`
    <4> Registers a new task named `myCopy1` of type `Copy`
    <5> Gets a reference to the existing (untyped) task named `assemble` and configures it — you can only configure properties and methods that are available on `Task` with this syntax
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top