Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,101 for kts$ (0.07 sec)

  1. platforms/documentation/docs/src/snippets/organizingGradleProjects/configureProjectUsingScript/kotlin/build.gradle.kts

    apply(from = "other.gradle.kts")...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/multiproject/customLayout/kotlin/settings.gradle.kts

    println(rootProject.name)
    println(project(":project-a").name)
    // end::lookup-project[]
    
    // tag::change-project[]
    project(":project-a").projectDir = file("custom/my-project-a")
    project(":project-a").buildFileName = "project-a.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/kotlin/settings.gradle.kts

    rootProject.name = "project-evaluate-events"
    include("project-a", "project-b")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 144 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/kotlin/build.gradle.kts

                }
            }
        }
    }
    
    // Apply the plugin
    apply<GreetingPlugin>()
    // end::no-script-plugin[]
    
    // tag::script-plugin[]
    apply(from = "other.gradle.kts")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 407 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/build.gradle.kts

    val buildProfile: String? by project  // <1>
    
    apply(from = "profile-${buildProfile ?: "default"}.gradle.kts")  // <2>
    
    tasks.register("greeting") {
        // Store the message into a variable, because referencing extras from the task action
        // is not compatible with the configuration cache.
        val message = project.extra["message"]
        doLast {
            println(message)  // <3>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 390 bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/settings.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    include("app")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 680 bytes
    - Viewed (0)
  7. build-logic/settings.gradle.kts

                }
            }
            mavenCentral()
            gradlePluginPortal()
        }
    }
    
    apply(from = "../gradle/shared-with-buildSrc/mirrors.settings.gradle.kts")
    
    // Utilities for updating the build itself which are not part of the usual build process
    include("build-update-utils")
    
    // Collection of plugins for the root build to configure lifecycle, reporting and IDE integration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/containingDeclarationProvider/containingModuleByFile/script.kts

    Yan Zhulanow <******@****.***> 1710406416 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 15 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/scriptWithResultProperty.kts

    Dmitrii Gridin <******@****.***> 1697652706 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 20 09:27:21 UTC 2023
    - 185 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/scriptUninitializedTopLevelProperty2.kts

    Marco Pennekamp <******@****.***> 1699543905 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 261 bytes
    - Viewed (0)
Back to top