Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. impl/maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      POM configuration via the lookup method or something.
    
    * PluginDescriptorBuilder
    
      s/getMojoConfiguration()/getConfiguration()/g
    
      That should be all there is to it.
    
    * MojoDescriptor
    
      Remove set/getMojoConfiguration(..), as it will become obsolete.
    
    * MavenSession
    
      We may need to enable the context injection here, since this will be
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

            assertEquals(1, md.getRequirements().size());
            assertEquals(1, md.getParameters().size());
    
            assertNotNull(md.getMojoConfiguration());
            assertEquals(1, md.getMojoConfiguration().getChildCount());
    
            PlexusConfiguration pc = md.getMojoConfiguration().getChild(0);
    
            assertEquals("${jar.finalName}", pc.getValue());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top