Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isDirectInvocationOnly (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertEquals("test", md.getDependencyCollectionRequired());
            assertFalse(md.isAggregator(), "Expected " + md + ".isAggregator() to return false");
            assertFalse(md.isDirectInvocationOnly(), "Expected " + md + ".isDirectInvocationOnly() to return false");
            assertTrue(md.isInheritedByDefault(), "Expected " + md + ".isInheritedByDefault() to return true");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 6K bytes
    - Click Count (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            return aggregator;
        }
    
        /**
         * @return <code>true</code> if the Mojo cannot be invoked directly, <code>false</code> otherwise.
         */
        public boolean isDirectInvocationOnly() {
            return directInvocationOnly;
        }
    
        /**
         * @param directInvocationOnly <code>true</code> if the Mojo cannot be invoked directly,
         * <code>false</code> otherwise.
         */
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 21.7K bytes
    - Click Count (0)
Back to Top