Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for projectSettingsSource (0.07 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java

                this.installationSettingsSource = installationSettingsSource;
                return this;
            }
    
            public SettingsBuilderRequestBuilder projectSettingsSource(Source projectSettingsSource) {
                this.projectSettingsSource = projectSettingsSource;
                return this;
            }
    
            public SettingsBuilderRequestBuilder userSettingsSource(Source userSettingsSource) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuildingRequest.java

            return this;
        }
    
        @Override
        public SettingsSource getProjectSettingsSource() {
            return projectSettingsSource;
        }
    
        @Override
        public DefaultSettingsBuildingRequest setProjectSettingsSource(SettingsSource projectSettingsSource) {
            this.projectSettingsSource = projectSettingsSource;
    
            return this;
        }
    
        @Override
        public File getUserSettingsFile() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java

        /**
         * Sets the project settings source.
         *
         * @param projectSettingsSource The project settings source, may be {@code null} to disable global settings.
         * @return This request, never {@code null}.
         * @since 4.0.0
         */
        SettingsBuildingRequest setProjectSettingsSource(SettingsSource projectSettingsSource);
    
        /**
         * Gets the user settings file.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

                @Nonnull Session session,
                @Nonnull Source installationSettingsSource,
                @Nonnull Source projectSettingsSource,
                @Nonnull Source userSettingsSource) {
            return build(SettingsBuilderRequest.build(
                    session, installationSettingsSource, projectSettingsSource, userSettingsSource));
        }
    
        /**
         * Builds the effective settings of the specified settings paths.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                                    ? Sources.fromPath(installationSettingsFile)
                                    : null)
                    .projectSettingsSource(
                            projectSettingsFile != null && Files.exists(projectSettingsFile)
                                    ? Sources.fromPath(projectSettingsFile)
                                    : null)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
Back to top