Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for DirectoryProperty (0.2 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

                .reason("A property of type '${config.propertyType}' annotated with @Input cannot determine how to interpret the file")
            if (config.propertyType == "DirectoryProperty" || config.propertyType == "Directory") {
                incorrectUseOfInputAnnotation.solution("Annotate with @InputDirectory for directories")
                    .render()
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <li>A {@link org.gradle.api.tasks.TaskReference} object.</li>
     *
     * <li>A {@link Buildable} object.</li>
     *
     * <li>A {@link org.gradle.api.file.RegularFileProperty} or {@link org.gradle.api.file.DirectoryProperty}.</li>
     *
     * <li>A {@link Provider} object. May contain any of the types listed here.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * generated into.</p>
         *
         * @param path The build directory
         * @since 4.0
         * @deprecated Use {@code getLayout().getBuildDirectory()} and set the {@link org.gradle.api.file.DirectoryProperty}
         */
        @Deprecated
        void setBuildDir(File path);
    
        /**
         * <p>Sets the build directory of this project. The build directory is the directory which all artifacts are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    `archiveFile` — `Provider<RegularFile>`, _read-only_, default: `__destinationDirectory__/__archiveFileName__`::
    The absolute file path of the generated archive.
    
    `destinationDirectory` — `DirectoryProperty`, default: depends on archive type::
    The target directory in which to put the generated archive. By default, JARs and WARs go into `layout.buildDirectory.dir("libs")`. ZIPs and TARs go into `layout.buildDirectory.dir("distributions")`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top