Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setBuilderId (0.08 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            copy.setNoSnapshotUpdates(original.isNoSnapshotUpdates());
            copy.setExecutionListener(original.getExecutionListener());
            copy.setUseLegacyLocalRepository(original.isUseLegacyLocalRepository());
            copy.setBuilderId(original.getBuilderId());
            copy.setStartInstant(original.getStartInstant());
            return copy;
        }
    
        @Override
        public String getBaseDirectory() {
            if (basedir == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                    request.setBuilderId("multithreaded");
                    request.setDegreeOfConcurrency(degreeOfConcurrency);
                }
            }
    
            //
            // Allow the builder to be overridden by the user if requested. The builders are now pluggable.
            //
            if (context.options().builder().isPresent()) {
                request.setBuilderId(context.options().builder().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)
  3. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * Controls the {@link org.apache.maven.lifecycle.internal.builder.Builder} used by Maven by specification
         * of the builder's id.
         *
         * @since 3.2.0
         */
        MavenExecutionRequest setBuilderId(String builderId);
    
        /**
         * Controls the {@link org.apache.maven.lifecycle.internal.builder.Builder} used by Maven by specification
         * of the builders id.
         *
         * @since 3.2.0
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top