- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for activatedProfiles (0.06 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
protected void performProfileActivation(MavenContext context, ProfileActivation profileActivation) { if (context.options().activatedProfiles().isPresent() && !context.options().activatedProfiles().get().isEmpty()) { List<String> optionValues = context.options().activatedProfiles().get(); for (final String optionValue : optionValues) { for (String token : optionValue.split(",")) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
} return Optional.empty(); } @Override public Optional<List<String>> activatedProfiles() { if (commandLine.hasOption(CLIManager.ACTIVATE_PROFILES)) { return Optional.of(Arrays.asList(commandLine.getOptionValues(CLIManager.ACTIVATE_PROFILES))); } return Optional.empty(); } @Override public Optional<Boolean> suppressSnapshotUpdates() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/settings.xml
<profiles> <!-- profile | Specifies a set of introductions to the build process, to be activated using one or more of the | mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/> | or the command line, profiles have to have an ID that is unique. | | An encouraged best practice for profile identification is to use a consistent naming convention
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 22 07:44:50 UTC 2025 - 11.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
public static final char SHOW_VERSION = 'V'; public static final char NON_RECURSIVE = 'N'; public static final char UPDATE_SNAPSHOTS = 'U'; public static final char ACTIVATE_PROFILES = 'P'; public static final String SUPPRESS_SNAPSHOT_UPDATES = "nsu"; public static final char CHECKSUM_FAILURE_POLICY = 'C'; public static final char CHECKSUM_WARNING_POLICY = 'c';Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
final CommandLineParser parser = new DefaultParser(); final Options options = new Options(); options.addOption(Option.builder(Character.toString(CLIManager.ACTIVATE_PROFILES)) .hasArg() .build()); ProfileActivation activation; activation = new ProfileActivation();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 30.9K bytes - Viewed (0)