Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for buildScript (0.1 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)
Back to top