Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getEffectiveSettings (1.78 sec)

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

        /**
         * Gets the assembled settings.
         *
         * @return the assembled settings, never {@code null}
         */
        @Nonnull
        Settings getEffectiveSettings();
    
        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

        }
    
        private Settings build(SettingsBuildingRequest request) throws IOException, XmlPullParserException {
            try {
                return settingsBuilder.build(request).getEffectiveSettings();
            } catch (SettingsBuildingException e) {
                throw new IOException(e.getMessage(), e);
            }
        }
    
        /** @since 2.1 */
        @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top