Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ComponentDependency (0.23 sec)

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

            }
            return dependencies;
        }
    
        private ComponentDependency extractComponentDependency(PlexusConfiguration d) {
            ComponentDependency cd = new ComponentDependency();
    
            cd.setArtifactId(extractArtifactId(d));
    
            cd.setGroupId(extractGroupId(d));
    
            cd.setType(d.getChild("type").getValue());
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java

     * under the License.
     */
    package org.apache.maven.plugin.descriptor;
    
    import java.io.IOException;
    import java.io.InputStream;
    
    import org.codehaus.plexus.component.repository.ComponentDependency;
    import org.codehaus.plexus.component.repository.ComponentRequirement;
    import org.codehaus.plexus.configuration.PlexusConfiguration;
    import org.codehaus.plexus.configuration.PlexusConfigurationException;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top