Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setGlobalProfileManager (0.15 sec)

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

        ArtifactRepository getLocalRepository();
    
        ProfileManager getGlobalProfileManager();
    
        Properties getUserProperties();
    
        Properties getExecutionProperties();
    
        ProjectBuilderConfiguration setGlobalProfileManager(ProfileManager globalProfileManager);
    
        ProjectBuilderConfiguration setLocalRepository(ArtifactRepository localRepository);
    
        ProjectBuilderConfiguration setUserProperties(Properties userProperties);
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - 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

        private Properties executionProperties = System.getProperties();
    
        private Date buildStartTime;
    
        public DefaultProjectBuilderConfiguration() {}
    
        @Override
        public ProjectBuilderConfiguration setGlobalProfileManager(ProfileManager globalProfileManager) {
            this.globalProfileManager = globalProfileManager;
            return this;
        }
    
        @Override
        public ProfileManager getGlobalProfileManager() {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top