Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for PluginDescriptorBuilder (0.09 seconds)

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

    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    
    /**
     * Build plugin descriptor object from {@code plugin.xml}.
     *
     * @author Jason van Zyl
     */
    public class PluginDescriptorBuilder {
    
        public static final String PLUGIN_2_0_0 = "http://maven.apache.org/PLUGIN/2.0.0";
        private static final int BUFFER_SIZE = 8192;
    
        public interface StreamSupplier {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Mar 25 09:45:07 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  2. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@link PluginDescriptorBuilder}.
     *
     */
    class PluginDescriptorBuilderTest {
    
        private PluginDescriptor build(String resource) throws IOException, PlexusConfigurationException {
            try (InputStream is = getClass().getResourceAsStream(resource)) {
                return new PluginDescriptorBuilder().build(is, null);
            }
        }
    
        @Test
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 6K bytes
    - Click Count (0)
  3. impl/maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      of the code that references this method, since the container should provide
      some way of recontextualizing the mojo, and all we would need to do is inject
      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
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 4.1K bytes
    - Click Count (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

        private final List<MavenPluginPrerequisitesChecker> prerequisitesCheckers;
        private final ExtensionDescriptorBuilder extensionDescriptorBuilder = new ExtensionDescriptorBuilder();
        private final PluginDescriptorBuilder builder = new PluginDescriptorBuilder();
    
        @Inject
        @SuppressWarnings("checkstyle:ParameterNumber")
        public DefaultMavenPluginManager(
                PlexusContainer container,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 09 16:35:21 GMT 2025
    - 46.4K bytes
    - Click Count (0)
  5. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

         * @since 3.0.2
         */
        // used by maven-core's org.apache.maven.plugin.internal.DefaultMavenPluginManager#getPluginDescriptor(...)
        // and PluginDescriptorBuilder since 4.0.0-alpha-3
        public void setRequiredMavenVersion(String requiredMavenVersion) {
            this.requiredMavenVersion = requiredMavenVersion;
        }
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 16.2K bytes
    - Click Count (0)
Back to Top