Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for projectDir (0.16 sec)

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

            this.buildScript = buildScript;
            return this;
        }
    
        @Override
        public GradleExecuter usingProjectDirectory(File projectDir) {
            this.projectDir = projectDir;
            return this;
        }
    
        @Override
        @Deprecated
        public GradleExecuter usingSettingsFile(File settingsFile) {
            this.settingsFile = settingsFile;
    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. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            this.classLoaderScope = selfClassLoaderScope;
            this.baseClassLoaderScope = baseClassLoaderScope;
            this.rootProject = parent != null ? parent.getRootProject() : this;
            this.projectDir = projectDir;
            this.buildFile = buildFile;
            this.parent = parent;
            this.name = name;
            this.state = new ProjectStateInternal();
            this.buildScriptSource = buildScriptSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The deprecated `InstallExecutable.setDestinationDir(Provider)` was removed — use link:{groovyDslPath}/org.gradle.nativeplatform.tasks.InstallExecutable.html#org.gradle.nativeplatform.tasks.InstallExecutable...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    .settings.gradle.kts
    [source,kotlin]
    ----
    include("project-without-directory")
    project(":project-without-directory").projectDir.mkdirs()
    ----
    ======
    [.multi-language-sample]
    ======
    .settings.gradle
    [source,groovy]
    ----
    include 'project-without-directory'
    project(":project-without-directory").projectDir.mkdirs()
    ----
    ======
    =====
    
    
    [[changes_8.4]]
    == Upgrading from 8.3 and earlier
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | `project.rootDir`
    | A task input or output property or a script variable to capture the result of using `project.rootDir` to calculate the actual parameter.
    
    | `project.projectDir`
    | A task input or output property or a script variable to capture the result of using `project.projectDir` to calculate the actual parameter.
    
    | `project.buildDir`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Returns the build directory of this project.  The build directory is the directory which all artifacts are
         * generated into.  The default value for the build directory is <code><i>projectDir</i>/build</code></p>
         *
         * @return The build directory. Never returns null.
         * @deprecated Use {@code getLayout().getBuildDirectory()} instead
         */
        @Deprecated
        File getBuildDir();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                            assert deps[0].requested.matchesStrictly(moduleId("org.utils", "api", "1.5"))
                            assert deps[0].selected.componentId == projectId(":api")
    
                            assert !deps[0].selected.selectionReason.forced
                            assert deps[0].selected.selectionReason.selectedByRule
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
Back to top