Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for requiresDirectInvocation (0.07 sec)

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

            if (dependencyCollection != null) {
                mojo.setDependencyCollectionRequired(dependencyCollection.getValue());
            }
    
            String directInvocationOnly = c.getChild("requiresDirectInvocation").getValue();
    
            if (directInvocationOnly != null) {
                mojo.setDirectInvocationOnly(Boolean.parseBoolean(directInvocationOnly));
            }
    
    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-plugin/src/main/mdo/plugin.mdo

                full dependency resolution might fail due to projects which haven't been built yet.
              </description>
            </field>
            <field>
              <name>requiresDirectInvocation</name>
              <version>1.0.0/1.1.0</version>
              <type>boolean</type>
              <description>Flags this Mojo to be invoked directly only.</description>
              <defaultValue>false</defaultValue>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:28:41 UTC 2025
    - 24.8K bytes
    - Viewed (0)
Back to top