Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for withBuildScriptIn (0.25 sec)

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

        @Before
        fun withSettingsPluginFromIncludedBuild() {
            // given: a Settings plugin from an included build
            withDefaultSettingsIn("plugins")
            withBuildScriptIn(
                "plugins",
                """
                    plugins { `kotlin-dsl` }
                    $repositoriesBlock
                """
            )
            withPluginSourceFile(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginGradlePluginCrossVersionSmokeTest.kt

            KotlinGradlePluginVersions.assumeCurrentJavaVersionIsSupportedBy(kotlinVersion)
    
            withDefaultSettingsIn("buildSrc")
            withBuildScriptIn(
                "buildSrc",
                """
                import org.jetbrains.kotlin.config.KotlinCompilerVersion
    
                plugins {
                    `kotlin-dsl`
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginTasksIntegrationTest.kt

                buildCache {
                    local {
                        directory = file("${cacheDir.normalisedPath}")
                    }
                }
                """
            )
            withBuildScriptIn(
                firstLocation,
                """
                plugins { `kotlin-dsl` }
                ${mavenCentralRepository(GradleDsl.KOTLIN)}
                """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 10:30:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. 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