Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for withBuildScriptIn (0.2 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

        }
    
        private
        fun withBuildExercisingSamConversionForKotlinFunctions(buildSrcScript: String = "") {
    
            withDefaultSettingsIn("buildSrc")
    
            withBuildScriptIn(
                "buildSrc",
                """
    
                plugins {
                    `kotlin-dsl`
                }
    
                $repositoriesBlock
    
                $buildSrcScript
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                        """
                        include("gradlePropertyPlugin")
                        include("gradlePropertyPluginConsumer")
                        """
                    )
                    withBuildScriptIn(
                        relativePath,
                        """
                        plugins { `java-library` }
                        dependencies {
                            subprojects.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                buildscript {
                    dependencies { classpath(files("fixture.jar")) }
                }
                """
            )
    
            withSettings("include(\"sub-project\")")
    
            withBuildScriptIn(
                "sub-project",
                """
                task("compute") {
                    doLast {
                        val computer = ${DeepThought::class.qualifiedName}()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top