Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for buildScript (1.06 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                executer.withPluginRepositoryMirrorDisabled();
            }
    
            return executer;
        }
    
        @Override
        @Deprecated
        public GradleExecuter usingBuildScript(File buildScript) {
            this.buildScript = buildScript;
            return this;
        }
    
        @Override
        public GradleExecuter usingProjectDirectory(File projectDir) {
            this.projectDir = projectDir;
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        }
    
        def 'can use ListProperty of ComponentArtifactIdentifier as task input'() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildScript '''
                plugins {
                    id 'java-library'
                }
    
                dependencies {
                    implementation(gradleApi())
                }
    
                @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.Project.buildscript(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[changes_8.3]]
    == Upgrading from 8.2 and earlier
    
    === Potential breaking changes
    
    ==== Deprecated `Project.buildDir` can cause script compilation failure
    
    With the deprecation of `Project.buildDir`, buildscripts that are compiled with warnings as errors could fail if the deprecated field is used.
    
    See <<#project_builddir, the deprecation entry>> for details.
    
    ==== `TestLauncher` API no longer ignores build failures
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top