Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for isProcessPlugins (0.08 seconds)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java

         * resolving plugin dependencies and executing plugin goals that participate in project building.
         *
         * @return true if plugins should be processed, false otherwise
         */
        boolean isProcessPlugins();
    
        /**
         * Gets the list of remote repositories to use for resolving dependencies during project building.
         * These repositories will be used in addition to any repositories defined in the project itself.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 10 07:30:49 GMT 2025
    - 11.7K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                        .setRemoteRepositories(repositories)
                        .setPluginArtifactRepositories(repositories)
                        .setProcessPlugins(request.isProcessPlugins());
                ProjectBuildingResult res;
                if (request.getPath().isPresent()) {
                    Path path = request.getPath().get();
                    res = builder.build(path.toFile(), req);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Sep 13 09:44:11 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                        || isStandalone
                                        || (pomFile != null
                                                && this.request.isProcessPlugins()
                                                && this.request.getValidationLevel()
                                                        == ModelBuildingRequest.VALIDATION_LEVEL_STRICT)
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 17:20:31 GMT 2025
    - 51.8K bytes
    - Click Count (0)
Back to Top