Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SettingsUtils (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java

     */
    package org.apache.maven.settings;
    
    import org.apache.maven.impl.SettingsUtilsV4;
    
    /**
     * Several convenience methods to handle settings
     *
     */
    public final class SettingsUtils {
    
        private SettingsUtils() {
            // don't allow construction.
        }
    
        /**
         * @param dominant
         * @param recessive
         * @param recessiveSourceLevel
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

    import org.apache.maven.settings.Proxy;
    import org.apache.maven.settings.Repository;
    import org.apache.maven.settings.Server;
    import org.apache.maven.settings.Settings;
    import org.apache.maven.settings.SettingsUtils;
    import org.apache.maven.toolchain.model.PersistedToolchains;
    import org.apache.maven.toolchain.model.ToolchainModel;
    
    /**
     * Assists in populating an execution request for invocation of Maven.
     */
    @Named
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/java/org/apache/maven/settings/PomConstructionWithSettingsTest.java

            ProjectBuildingRequest config = new DefaultProjectBuildingRequest();
    
            for (org.apache.maven.settings.Profile rawProfile : settings.getProfiles()) {
                Profile profile = SettingsUtils.convertFromSettingsProfile(rawProfile);
                config.addProfile(profile);
            }
    
            String localRepoPath = System.getProperty(
                    "maven.repo.local",
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top