- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setActivePomProfiles (0.1 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java
return this; } @Override public List<Profile> getActivePomProfiles(String modelId) { return activePomProfiles.get(modelId); } public DefaultModelBuildingResult setActivePomProfiles(String modelId, List<Profile> activeProfiles) { // Intentionally notNull because Super POM may not contain a modelId Objects.requireNonNull(modelId, "modelId cannot null");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
List<org.apache.maven.api.model.Profile> activePomProfiles = profileSelector.getActiveProfilesV4(interpolatedProfiles, profileActivationContext, problems); result.setActivePomProfiles( modelId, activePomProfiles.stream().map(Profile::new).collect(Collectors.toList())); modelv4 = profileInjector.injectProfiles(modelv4, activePomProfiles, request, problems);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 83.6K bytes - Viewed (0)