Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getGlobalProfileManager (0.39 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/project/ProjectBuilderConfiguration.java

    /**
     * @deprecated use {@link ProjectBuildingRequest} instead
     */
    @Deprecated
    public interface ProjectBuilderConfiguration {
    
        ArtifactRepository getLocalRepository();
    
        ProfileManager getGlobalProfileManager();
    
        Properties getUserProperties();
    
        Properties getExecutionProperties();
    
        ProjectBuilderConfiguration setGlobalProfileManager(ProfileManager globalProfileManager);
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultProjectBuilderConfiguration.java

        public ProjectBuilderConfiguration setGlobalProfileManager(ProfileManager globalProfileManager) {
            this.globalProfileManager = globalProfileManager;
            return this;
        }
    
        public ProfileManager getGlobalProfileManager() {
            return globalProfileManager;
        }
    
        public ProjectBuilderConfiguration setLocalRepository(ArtifactRepository localRepository) {
            this.localRepository = localRepository;
            return this;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top