Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for processPlugins (0.08 seconds)

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

             *
             * @param processPlugins true if plugins should be processed, false otherwise
             * @return this builder instance
             */
            public ProjectBuilderRequestBuilder processPlugins(boolean processPlugins) {
                this.processPlugins = processPlugins;
                return this;
            }
    
            /**
    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/test/java/org/apache/maven/internal/impl/TestApi.java

                    .build(ProjectBuilderRequest.builder()
                            .session(session)
                            .path(session.getPathForLocalArtifact(artifact))
                            .processPlugins(false)
                            .build())
                    .getProject()
                    .get();
        }
    
        @Test
        void testCreateAndResolveArtifact() {
            ArtifactCoordinates coords =
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 10.2K bytes
    - Click Count (0)
Back to Top