- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getActiveExternalProfiles (0.1 sec)
-
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 problem collector that collected problems encountered during the project building. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultProjectBuilderTest.java
@Override public java.util.Map<String, List<Profile>> getActivePomProfilesByModel() { return java.util.Map.of(); } @Override public List<Profile> getActiveExternalProfiles() { return List.of(); } @Override public ProblemCollector<ModelProblem> getProblemCollector() { return null; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 7.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
Stream.concat(result.getActivePomProfiles().stream(), result.getActiveExternalProfiles().stream()) .map(org.apache.maven.model.Profile::new) .toList()); project.setInjectedProfileIds("external", getProfileIds(result.getActiveExternalProfiles())); // Track profile sources correctly by using the per-model profile tracking
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0)