1 package org.apache.maven.plugin.registry; 2 3 import org.codehaus.plexus.util.xml.pull.XmlPullParserException; 4 5 import java.io.IOException ; 6 7 22 23 public interface MavenPluginRegistryBuilder 24 { 25 String ROLE = MavenPluginRegistryBuilder.class.getName(); 26 27 String ALT_USER_PLUGIN_REG_LOCATION = "org.apache.maven.user-plugin-registry"; 28 String ALT_GLOBAL_PLUGIN_REG_LOCATION = "org.apache.maven.global-plugin-registry"; 29 30 PluginRegistry buildPluginRegistry() 31 throws IOException , XmlPullParserException; 32 33 PluginRegistry createUserPluginRegistry(); 34 35 } 36 | Popular Tags |