1 package org.apache.maven.settings; 2 3 18 19 import org.codehaus.plexus.util.xml.pull.XmlPullParserException; 20 21 import java.io.File ; 22 import java.io.IOException ; 23 24 28 public interface MavenSettingsBuilder 29 { 30 String ROLE = MavenSettingsBuilder.class.getName(); 31 32 String ALT_USER_SETTINGS_XML_LOCATION = "org.apache.maven.user-settings"; 33 String ALT_GLOBAL_SETTINGS_XML_LOCATION = "org.apache.maven.global-settings"; 34 String ALT_LOCAL_REPOSITORY_LOCATION = "maven.repo.local"; 35 36 Settings buildSettings() 37 throws IOException , XmlPullParserException; 38 39 Settings buildSettings( File userSettingsFile ) 40 throws IOException , XmlPullParserException; 41 } 42 | Popular Tags |