- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getActiveExternalProfiles (0.17 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingResult.java
problems = new ArrayList<>(); } DefaultModelBuildingResult(ModelBuildingResult result) { this(); this.activeExternalProfiles.addAll(result.getActiveExternalProfiles()); this.effectiveModel = result.getEffectiveModel(); this.fileModel = result.getFileModel(); this.problems.addAll(result.getProblems()); for (String modelId : result.getModelIds()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
* contributed by {@link ModelBuilderRequest#getProfiles()}. * * @return The active external profiles or an empty list if none, never {@code null}. */ @Nonnull List<Profile> getActiveExternalProfiles(); /** * Gets the problems that were encountered during the project building. * * @return the problems that were encountered during the project building, can be empty but never {@code null}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java
tmp.setEffectiveModel(result.getEffectiveModel()); tmp.setProblems(getProblems()); tmp.setActiveExternalProfiles(result.getActiveExternalProfiles()); String id = getRootModelId(); tmp.addModelId(id); tmp.setRawModel(id, getRootModel()); result = tmp; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java
* contributed by {@link ModelBuildingRequest#getProfiles()}. * * @return The active external profiles or an empty list if none, never {@code null}. */ List<Profile> getActiveExternalProfiles(); /** * Gets the problems that were encountered during the model building. Note that only problems of severity
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
// profile activation DefaultProfileActivationContext profileActivationContext = getProfileActivationContext(request); List<Profile> activeExternalProfiles = result.getActiveExternalProfiles(); if (!activeExternalProfiles.isEmpty()) { Properties profileProps = new Properties(); for (Profile profile : activeExternalProfiles) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 83.6K bytes - Viewed (0)