Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setGlobalProfileManager (0.23 sec)

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

                throws ProjectBuildingException {
            ProjectBuilderConfiguration configuration = new DefaultProjectBuilderConfiguration();
            configuration.setLocalRepository(localRepository);
            configuration.setGlobalProfileManager(profileManager);
    
            return build(pom, configuration);
        }
    
        public MavenProject buildFromRepository(
                Artifact artifact,
                List<ArtifactRepository> remoteRepositories,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/project/DefaultProjectBuilderConfiguration.java

        private Properties executionProperties = System.getProperties();
    
        private Date buildStartTime;
    
        public DefaultProjectBuilderConfiguration() {}
    
        public ProjectBuilderConfiguration setGlobalProfileManager(ProfileManager globalProfileManager) {
            this.globalProfileManager = globalProfileManager;
            return this;
        }
    
        public ProfileManager getGlobalProfileManager() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top