- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getRequiredActiveProfileIds (0.08 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
*/ public class ProfileActivation { private final Map<String, ActivationSettings> activations = new HashMap<>(); /** * Mimics the pre-Maven 4 "active profiles" list. * @deprecated Use {@link #getRequiredActiveProfileIds()} and {@link #getOptionalActiveProfileIds()} instead. */ @Deprecated public List<String> getActiveProfiles() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 5.6K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
activation = new ProfileActivation(); performProfileActivation(parser.parse(options, new String[] {"-P", "test1,+test2,?test3,+?test4"}), activation); assertContainsExactlyInAnyOrder(activation.getRequiredActiveProfileIds(), "test1", "test2"); assertContainsExactlyInAnyOrder(activation.getOptionalActiveProfileIds(), "test3", "test4"); activation = new ProfileActivation(); performProfileActivation(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 30.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
} private Map<String, String> getPropertiesFromRequestedProfiles(MavenExecutionRequest request) { HashSet<String> activeProfileId = new HashSet<>(request.getProfileActivation().getRequiredActiveProfileIds()); activeProfileId.addAll(request.getProfileActivation().getOptionalActiveProfileIds()); return request.getProfiles().stream()Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 17 05:56:35 UTC 2025 - 25.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
final Set<String> allAvailableProfiles = getAllProfiles(session); final Set<String> requiredProfiles = new HashSet<>(); requiredProfiles.addAll(profileActivation.getRequiredActiveProfileIds()); requiredProfiles.addAll(profileActivation.getRequiredInactiveProfileIds()); // Check whether the required profiles were found in any of the projects we're building.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon May 05 16:58:52 UTC 2025 - 28.7K bytes - Viewed (1)