- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for activatedProfiles (0.06 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/LayeredMavenOptions.java
public Optional<Boolean> updateSnapshots() { return returnFirstPresentOrEmpty(MavenOptions::updateSnapshots); } @Override public Optional<List<String>> activatedProfiles() { return collectListIfPresentOrEmpty(MavenOptions::activatedProfiles); } @Override public Optional<Boolean> suppressSnapshotUpdates() { return returnFirstPresentOrEmpty(MavenOptions::suppressSnapshotUpdates); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 5.4K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java
* Returns the list of profiles to activate. * * @return an {@link Optional} containing the list of profile names to activate, or empty if not specified */ @Nonnull Optional<List<String>> activatedProfiles(); /** * Indicates whether Maven should suppress SNAPSHOT updates. * * @return an {@link Optional} containing true if SNAPSHOT updates should be suppressed, false if not, or empty if not specifiedRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 8K bytes - Viewed (0)