Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getArchiveVersion (0.16 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/api/plugins/BasePlugin.java

            project.getTasks().withType(AbstractArchiveTask.class).configureEach(task -> {
                task.getDestinationDirectory().convention(extension.getDistsDirectory());
                task.getArchiveVersion().convention(
                    project.provider(() -> project.getVersion() == Project.DEFAULT_VERSION ? null : project.getVersion().toString())
                );
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

         *
         * @return the version. Internal property may be null.
         * @since 5.1
         */
        @Internal("Represented as part of archiveFile")
        public Property<String> getArchiveVersion() {
            return archiveVersion;
        }
    
        /**
         * Returns the extension part of the archive name.
         *
         * @since 5.1
         */
        @Internal("Represented as part of archiveFile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top