Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ProjectActivation (0.11 sec)

  1. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            final Options options = new Options();
            options.addOption(Option.builder(CLIManager.PROJECT_LIST).hasArg().build());
    
            ProjectActivation activation;
    
            activation = new ProjectActivation();
            performProjectActivation(
                    parser.parse(options, new String[] {"-pl", "test1,+test2,?test3,+?test4"}), activation);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                boolean parameterRecursive) {
            // Given
            ProjectActivation projectActivation = new ProjectActivation();
            parameterActiveRequiredProjects.forEach(projectActivation::activateRequiredProject);
            parameterActiveOptionalProjects.forEach(projectActivation::activateOptionalProject);
            parameterInactiveRequiredProjects.forEach(projectActivation::deactivateRequiredProject);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 20:39:03 UTC 2025
    - 28K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                return MavenExecutionRequest.REACTOR_MAKE_BOTH;
            } else {
                return null;
            }
        }
    
        protected void performProjectActivation(MavenContext context, ProjectActivation projectActivation) {
            if (context.options().projects().isPresent()
                    && !context.options().projects().get().isEmpty()) {
                List<String> optionValues = context.options().projects().get();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
            return current.isFile() ? current : null;
        }
    
        // Visible for testing
        static void performProjectActivation(final CommandLine commandLine, final ProjectActivation projectActivation) {
            if (commandLine.hasOption(CLIManager.PROJECT_LIST)) {
                final String[] optionValues = commandLine.getOptionValues(CLIManager.PROJECT_LIST);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
Back to top