- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getGlobalProfileManager (0.39 sec)
-
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) -
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)