Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for dependencyCollection (0.06 sec)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

                mojo.setDependencyResolutionRequired(dependencyResolution.getValue());
            }
    
            PlexusConfiguration dependencyCollection = c.getChild("requiresDependencyCollection", false);
    
            if (dependencyCollection != null) {
                mojo.setDependencyCollectionRequired(dependencyCollection.getValue());
            }
    
            String directInvocationOnly = c.getChild("requiresDirectInvocation").getValue();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

         * required when executing the Mojo.
         * If not set, it will be inferred from the fields
         * annotated with the {@link Resolution} annotation.
         */
        @Nonnull
        boolean dependencyCollection() default false;
    
        /**
         * Comma separated list of path scopes that will be
         * required for dependency resolution.
         * If not set, it will be inferred from the fields
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Aug 29 18:21:40 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/plugin.mdo

                full dependency resolution might fail due to projects which haven't been built yet.
              </description>
            </field>
            <field>
              <name>dependencyCollection</name>
              <version>2.0.0+</version>
              <type>String</type>
              <description>
                Flags this Mojo as requiring information about the dependencies that would make up the specified class
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:28:41 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

                                .executePhase(executePhase)
                                .aggregator(aggregator)
                                .dependencyResolution(dependencyResolutionRequired)
                                .dependencyCollection(dependencyCollectionRequired)
                                .projectRequired(projectRequired)
                                .onlineRequired(onlineRequired)
                                .inheritedByDefault(inheritedByDefault)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 21.7K bytes
    - Viewed (0)
Back to top